tests/extmod/ujson_dump.py: Add test for dump to non-stream object.

pull/3863/merge
Damien George 2018-06-13 12:53:25 +10:00
rodzic a5f5552a0a
commit 0ecce77c66
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -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')