/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/simplejson/tests
from unittest import TestCase import simplejson as json from operator import itemgetter class TestItemSortKey(TestCase): def test_simple_first(self): a = {'a': 1, 'c': 5, 'jack': 'jill', 'pick': 'axe', 'array': [1, 5, 6, 9], 'tuple': (83, 12, 3), 'crate': 'dog', 'zeak': 'oh'} self.assertEqual( '{"a": 1, "c": 5, "crate": "dog", "jack": "jill", "pick": "axe", "zeak": "oh", "array": [1, 5, 6, 9], "tuple": [83, 12, 3]}', json.dumps(a, item_sort_key=json.simple_first)) def test_case(self): a = {'a': 1, 'c': 5, 'Jack': 'jill', 'pick': 'axe', 'Array': [1, 5, 6, 9], 'tuple': (83, 12, 3), 'crate': 'dog', 'zeak': 'oh'} self.assertEqual( '{"Array": [1, 5, 6, 9], "Jack": "jill", "a": 1, "c": 5, "crate": "dog", "pick": "axe", "tuple": [83, 12, 3], "zeak": "oh"}', json.dumps(a, item_sort_key=itemgetter(0))) self.assertEqual( '{"a": 1, "Array": [1, 5, 6, 9], "c": 5, "crate": "dog", "Jack": "jill", "pick": "axe", "tuple": [83, 12, 3], "zeak": "oh"}', json.dumps(a, item_sort_key=lambda kv: kv[0].lower())) def test_item_sort_key_value(self): # https://github.com/simplejson/simplejson/issues/173 a = {'a': 1, 'b': 0} self.assertEqual( '{"b": 0, "a": 1}', json.dumps(a, item_sort_key=lambda kv: kv[1]))
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_cibw_runner.py
Edit
test_bigint_as_string.py
Edit
test_bitsize_int_as_string.py
Edit
test_check_circular.py
Edit
test_decimal.py
Edit
test_decode.py
Edit
test_default.py
Edit
test_dump.py
Edit
test_encode_basestring_ascii.py
Edit
test_encode_for_html.py
Edit
test_errors.py
Edit
test_fail.py
Edit
test_float.py
Edit
test_for_json.py
Edit
test_indent.py
Edit
test_item_sort_key.py
Edit
test_iterable.py
Edit
test_namedtuple.py
Edit
test_pass1.py
Edit
test_pass2.py
Edit
test_pass3.py
Edit
test_raw_json.py
Edit
test_recursion.py
Edit
test_scanstring.py
Edit
test_separators.py
Edit
test_speedups.py
Edit
test_str_subclass.py
Edit
test_subclass.py
Edit
test_tool.py
Edit
test_tuple.py
Edit
test_unicode.py
Edit