You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
tests/extmod/ujson_dump.py: Add test for dump to non-stream object.
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user