mirror of
https://github.com/python/cpython.git
synced 2025-07-30 22:54:16 +00:00

svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
15 lines
491 B
Python
15 lines
491 B
Python
import math
|
|
from unittest import TestCase
|
|
|
|
import json
|
|
|
|
class TestFloat(TestCase):
|
|
def test_floats(self):
|
|
for num in [1617161771.7650001, math.pi, math.pi**100, math.pi**-100, 3.1]:
|
|
self.assertEqual(float(json.dumps(num)), num)
|
|
self.assertEqual(json.loads(json.dumps(num)), num)
|
|
|
|
def test_ints(self):
|
|
for num in [1, 1<<32, 1<<64]:
|
|
self.assertEqual(json.dumps(num), str(num))
|
|
self.assertEqual(int(json.dumps(num)), num)
|