tests/basics/fun_error: Split out skippable test.

pull/2942/head
Paul Sokolovsky 2017-03-10 02:22:56 +01:00
rodzic 854bb322bf
commit c9705cff68
2 zmienionych plików z 19 dodań i 3 usunięć

Wyświetl plik

@ -27,8 +27,5 @@ test_exc("[].sort(1)", TypeError)
# function with keyword args given extra keyword args
test_exc("[].sort(noexist=1)", TypeError)
# function with keyword args not given a specific keyword arg
test_exc("enumerate()", TypeError)
# kw given for positional, but a different positional is missing
test_exc("def f(x, y): pass\nf(x=1)", TypeError)

Wyświetl plik

@ -0,0 +1,19 @@
# test errors from bad function calls
try:
enumerate
except:
print("SKIP")
import sys
sys.exit()
def test_exc(code, exc):
try:
exec(code)
print("no exception")
except exc:
print("right exception")
except:
print("wrong exception")
# function with keyword args not given a specific keyword arg
test_exc("enumerate()", TypeError)