summaryrefslogtreecommitdiff
path: root/tests/basics/fun_error.py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-07-30 12:33:44 -0700
committerGitHub <noreply@github.com>2018-07-30 12:33:44 -0700
commita6d94b68453b8535398ff0b61cd6c4a0c7f77f8b (patch)
tree8defd6392975b8145dc11f0cce9c39a4e440b32a /tests/basics/fun_error.py
parent433a29bb70d51abb84c77a911ced43c6ff14706e (diff)
parentb1006170f1dcfa3a9499ef31c19c8f20736b136a (diff)
Merge pull request #1068 from dhalbert/micropython-25ae98f-merge
Micropython 25ae98f merge
Diffstat (limited to 'tests/basics/fun_error.py')
-rw-r--r--tests/basics/fun_error.py45
1 files changed, 29 insertions, 16 deletions
diff --git a/tests/basics/fun_error.py b/tests/basics/fun_error.py
index 367fe0b7f..3e79c727b 100644
--- a/tests/basics/fun_error.py
+++ b/tests/basics/fun_error.py
@@ -1,31 +1,44 @@
# test errors from bad function calls
-def test_exc(code, exc):
- try:
- exec(code)
- print("no exception")
- except exc:
- print("right exception")
- except:
- print("wrong exception")
-
# function doesn't take keyword args
-test_exc("[].append(x=1)", TypeError)
+try:
+ [].append(x=1)
+except TypeError:
+ print('TypeError')
# function with variable number of positional args given too few
-test_exc("round()", TypeError)
+try:
+ round()
+except TypeError:
+ print('TypeError')
# function with variable number of positional args given too many
-test_exc("round(1, 2, 3)", TypeError)
+try:
+ round(1, 2, 3)
+except TypeError:
+ print('TypeError')
# function with fixed number of positional args given wrong number
-test_exc("[].append(1, 2)", TypeError)
+try:
+ [].append(1, 2)
+except TypeError:
+ print('TypeError')
# function with keyword args given extra positional args
-test_exc("[].sort(1)", TypeError)
+try:
+ [].sort(1)
+except TypeError:
+ print('TypeError')
# function with keyword args given extra keyword args
-test_exc("[].sort(noexist=1)", TypeError)
+try:
+ [].sort(noexist=1)
+except TypeError:
+ print('TypeError')
# kw given for positional, but a different positional is missing
-test_exc("def f(x, y): pass\nf(x=1)", TypeError)
+try:
+ def f(x, y): pass
+ f(x=1)
+except TypeError:
+ print('TypeError')