summaryrefslogtreecommitdiff
path: root/lib/python2.7/json/tests/test_indent.py
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-04-29 18:06:20 -0700
committerJosh Gao <jmgao@google.com>2016-04-29 18:48:31 -0700
commit5102a42dbbd313551dec806dedcb2c4b41ca2549 (patch)
treeae775a6a70c7c350fa9eeb9a9dd6c191ec041b9a /lib/python2.7/json/tests/test_indent.py
parent0eac5d899bac5ad9180ff04f80cd2edb5ffa3f19 (diff)
downloadlinux-x86-5102a42dbbd313551dec806dedcb2c4b41ca2549.tar.gz
Update gdb to 7.11.nougat-dev
Taken from NDK build 2824841. Bug: http://b/28244367 Change-Id: I61369cec1cf7da5b5f352e2c6b618887ab4d525c (cherry picked from commit 039a04d8a5dda0ffad38364a9de21e66843db1a4)
Diffstat (limited to 'lib/python2.7/json/tests/test_indent.py')
-rw-r--r--lib/python2.7/json/tests/test_indent.py60
1 files changed, 0 insertions, 60 deletions
diff --git a/lib/python2.7/json/tests/test_indent.py b/lib/python2.7/json/tests/test_indent.py
deleted file mode 100644
index 9b18761..0000000
--- a/lib/python2.7/json/tests/test_indent.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import textwrap
-from StringIO import StringIO
-from json.tests import PyTest, CTest
-
-
-class TestIndent(object):
- def test_indent(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)
-
- def test_indent0(self):
- h = {3: 1}
- def check(indent, expected):
- d1 = self.dumps(h, indent=indent)
- self.assertEqual(d1, expected)
-
- sio = StringIO()
- self.json.dump(h, sio, indent=indent)
- self.assertEqual(sio.getvalue(), expected)
-
- # indent=0 should emit newlines
- check(0, '{\n"3": 1\n}')
- # indent=None is more compact
- check(None, '{"3": 1}')
-
-
-class TestPyIndent(TestIndent, PyTest): pass
-class TestCIndent(TestIndent, CTest): pass