From 0ecce77c663ee0ebb7fa6eefaf28094ee1dbf051 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 13 Jun 2018 12:53:25 +1000 Subject: [PATCH] tests/extmod/ujson_dump.py: Add test for dump to non-stream object. --- tests/extmod/ujson_dump.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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')