Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: third_party/simplejson/simplejson/tests/test_float.py

Issue 159607: Extension docs build script, gyp target and PRESUBMIT.PY check (Closed)
Patch Set: remove build step on mac Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
« no previous file with comments | « third_party/simplejson/simplejson/tests/test_fail.py ('k') | third_party/simplejson/simplejson/tests/test_indent.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698