Index: third_party/simplejson/simplejson/tests/test_float.py |
diff --git a/third_party/simplejson/simplejson/tests/test_float.py b/third_party/simplejson/simplejson/tests/test_float.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..1a2b98a2f6e897bf5ca6f100fa98fd47746d21e7 |
--- /dev/null |
+++ b/third_party/simplejson/simplejson/tests/test_float.py |
@@ -0,0 +1,15 @@ |
+import math |
+from unittest import TestCase |
+ |
+import simplejson as json |
+ |
+class TestFloat(TestCase): |
+ def test_floats(self): |
+ for num in [1617161771.7650001, math.pi, math.pi**100, math.pi**-100, 3.1]: |
+ self.assertEquals(float(json.dumps(num)), num) |
+ self.assertEquals(json.loads(json.dumps(num)), num) |
+ |
+ def test_ints(self): |
+ for num in [1, 1L, 1<<32, 1<<64]: |
+ self.assertEquals(json.dumps(num), str(num)) |
+ self.assertEquals(int(json.dumps(num)), num) |