Index: third_party/simplejson/simplejson/tests/test_default.py |
diff --git a/third_party/simplejson/simplejson/tests/test_default.py b/third_party/simplejson/simplejson/tests/test_default.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..139e42bf4acaa4927ec9be1ec55a252b97d3f1e2 |
--- /dev/null |
+++ b/third_party/simplejson/simplejson/tests/test_default.py |
@@ -0,0 +1,9 @@ |
+from unittest import TestCase |
+ |
+import simplejson as json |
+ |
+class TestDefault(TestCase): |
+ def test_default(self): |
+ self.assertEquals( |
+ json.dumps(type, default=repr), |
+ json.dumps(repr(type))) |