summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/extmod/ujson_dump.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/extmod/ujson_dump.py b/tests/extmod/ujson_dump.py
index c80e533ed..b1cb4a9cb 100644
--- a/tests/extmod/ujson_dump.py
+++ b/tests/extmod/ujson_dump.py
@@ -16,3 +16,15 @@ print(s.getvalue())
s = StringIO()
json.dump({"a": (2, [3, None])}, s)
print(s.getvalue())
+
+# dump to a small-int not allowed
+try:
+ json.dump(123, 1)
+except (AttributeError, OSError): # CPython and uPy have different errors
+ print('Exception')
+
+# dump to an object not allowed
+try:
+ json.dump(123, {})
+except (AttributeError, OSError): # CPython and uPy have different errors
+ print('Exception')