diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-14 21:20:58 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-14 21:20:58 +0000 |
commit | 26a9975fba2bbd8875f2671495003b9bdcb8d8b2 (patch) | |
tree | 6ea4e71ed0dde88d41ab29742c740faf6ee615e6 /tests/extmod/ujson_dumps.py | |
parent | 0683c1ceefe328399d967b85f172544eef04a832 (diff) | |
download | micropython-26a9975fba2bbd8875f2671495003b9bdcb8d8b2.tar.gz micropython-26a9975fba2bbd8875f2671495003b9bdcb8d8b2.zip |
tests: Add some more tests for bytes, bignum, string and ujson.
Diffstat (limited to 'tests/extmod/ujson_dumps.py')
-rw-r--r-- | tests/extmod/ujson_dumps.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/extmod/ujson_dumps.py b/tests/extmod/ujson_dumps.py index 0b8d239a06..16a695ab5c 100644 --- a/tests/extmod/ujson_dumps.py +++ b/tests/extmod/ujson_dumps.py @@ -21,3 +21,5 @@ print(json.dumps((1, (2, 3)))) print(json.dumps({})) print(json.dumps({"a":1})) print(json.dumps({"a":(2,[3,None])})) +print(json.dumps('"quoted"')) +print(json.dumps('space\n\r\tspace')) |