changed many tests from old completion tests to type tests, which brings more security

This commit is contained in:
David Halter
2012-07-06 01:33:58 +02:00
parent 8d26cff54b
commit e78ba60a47
2 changed files with 22 additions and 36 deletions

View File

@@ -2,16 +2,16 @@ def openbrace():
asdf = 3
asdf
asdf(
#? ['real']
asdf.real
#? int()
asdf
return 1
#? ['real']
openbrace().real
#? int()
openbrace()
blub([
#? ['real']
openbrace().real
#? int()
openbrace()
def indentfault():
asd(
@@ -25,8 +25,8 @@ def openbrace2():
def normalfunc():
return 1
##? ['real']
normalfunc().real
##? int()
normalfunc()
# first part not complete (raised errors)