diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_default.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_default.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_default.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_default.py new file mode 100644 index 0000000000..74aacee8e7 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_default.py @@ -0,0 +1,12 @@ +from json.tests import PyTest, CTest
+
+
+class TestDefault(object):
+ def test_default(self):
+ self.assertEqual(
+ self.dumps(type, default=repr),
+ self.dumps(repr(type)))
+
+
+class TestPyDefault(TestDefault, PyTest): pass
+class TestCDefault(TestDefault, CTest): pass
|