Skip to content

Commit

Permalink
Move the ahead of time tests to the pep0526 file
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhalter committed Jan 30, 2018
1 parent 3ae0560 commit 522e712
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/completion/pep0484_aheadoftime.py

This file was deleted.

16 changes: 16 additions & 0 deletions test/completion/pep0526_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@
with_typing_module: typing.List[float] = NOT_DEFINED
#? float()
with_typing_module[0]

somelist = [1, 2, 3, "A", "A"]
element : int
for element in somelist:
#? int()
element

test_string: str = NOT_DEFINED
#? str()
test_string


char: str
for char in NOT_DEFINED:
#? str()
char

0 comments on commit 522e712

Please sign in to comment.