summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-06-13 12:53:25 +1000
committerDamien George <damien.p.george@gmail.com>2018-06-18 12:35:56 +1000
commit0ecce77c663ee0ebb7fa6eefaf28094ee1dbf051 (patch)
treec44097629cb1b035a03a78c63701f037da633864
parenta5f5552a0a52cfd37f1db4d6df2194a4090561f5 (diff)
tests/extmod/ujson_dump.py: Add test for dump to non-stream object.
-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')