summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json/test_separators.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-08 12:03:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-08 12:03:45 (GMT)
commit66f2ea042acf792bf6ff432f409628e1cec99e43 (patch)
tree9d7e5a24d3f26eeeb63a0f00fa4758b5dde8d099 /Lib/test/test_json/test_separators.py
parent0d2d2b83935a516235f4dbce25aefad789d088cf (diff)
downloadcpython-66f2ea042acf792bf6ff432f409628e1cec99e43.zip
cpython-66f2ea042acf792bf6ff432f409628e1cec99e43.tar.gz
cpython-66f2ea042acf792bf6ff432f409628e1cec99e43.tar.bz2
#18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware.
Diffstat (limited to 'Lib/test/test_json/test_separators.py')
-rw-r--r--Lib/test/test_json/test_separators.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/Lib/test/test_json/test_separators.py b/Lib/test/test_json/test_separators.py
new file mode 100644
index 0000000..84a2be9
--- /dev/null
+++ b/Lib/test/test_json/test_separators.py
@@ -0,0 +1,44 @@
+import textwrap
+from test.test_json import PyTest, CTest
+
+
+class TestSeparators:
+ def test_separators(self):
+ h = [['blorpie'], ['whoops'], [], 'd-shtaeou', 'd-nthiouh', 'i-vhbjkhnth',
+ {'nifty': 87}, {'field': 'yes', 'morefield': False} ]
+
+ expect = textwrap.dedent("""\
+ [
+ [
+ "blorpie"
+ ] ,
+ [
+ "whoops"
+ ] ,
+ [] ,
+ "d-shtaeou" ,
+ "d-nthiouh" ,
+ "i-vhbjkhnth" ,
+ {
+ "nifty" : 87
+ } ,
+ {
+ "field" : "yes" ,
+ "morefield" : false
+ }
+ ]""")
+
+
+ d1 = self.dumps(h)
+ d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
+
+ h1 = self.loads(d1)
+ h2 = self.loads(d2)
+
+ self.assertEqual(h1, h)
+ self.assertEqual(h2, h)
+ self.assertEqual(d2, expect)
+
+
+class TestPySeparators(TestSeparators, PyTest): pass
+class TestCSeparators(TestSeparators, CTest): pass