/opt/alt/python37/lib64/python3.7/site-packages/simplejson/tests
NameSizeModeActions
__pycache__/-0755rm
test_bigint_as_string.py22380644editdlrm
test_bitsize_int_as_string.py22970644editdlrm
test_check_circular.py9170644editdlrm
test_decimal.py25440644editdlrm
test_decode.py40210644editdlrm
test_default.py2210644editdlrm
test_dump.py49990644editdlrm
test_encode_basestring_ascii.py23370644editdlrm
test_encode_for_html.py10220644editdlrm
test_errors.py15490644editdlrm
test_fail.py63460644editdlrm
test_float.py14300644editdlrm
test_for_json.py27670644editdlrm
test_indent.py25680644editdlrm
test_item_sort_key.py13760644editdlrm
test_iterable.py13900644editdlrm
test_namedtuple.py40040644editdlrm
test_pass1.py17460644editdlrm
test_pass2.py3860644editdlrm
test_pass3.py4820644editdlrm
test_raw_json.py10620644editdlrm
test_recursion.py16790644editdlrm
test_scanstring.py73110644editdlrm
test_separators.py9420644editdlrm
test_speedups.py31060644editdlrm
test_str_subclass.py5510644editdlrm
test_subclass.py11240644editdlrm
test_tool.py28530644editdlrm
test_tuple.py18310644editdlrm
test_unicode.py69960644editdlrm
__init__.py19790644editdlrm
Edit: /opt/alt/python37/lib64/python3.7/site-packages/simplejson/tests/test_separators.py (942B)
import textwrap from unittest import TestCase import simplejson as json class TestSeparators(TestCase): 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 = json.dumps(h) d2 = json.dumps(h, indent=' ', sort_keys=True, separators=(' ,', ' : ')) h1 = json.loads(d1) h2 = json.loads(d2) self.assertEqual(h1, h) self.assertEqual(h2, h) self.assertEqual(d2, expect)