File: test_float.py

package info (click to toggle)
python3.2 3.2.3-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 62,476 kB
  • sloc: python: 344,518; ansic: 315,782; sh: 11,910; asm: 10,846; makefile: 3,564; objc: 775; cpp: 432; exp: 416; xml: 73
file content (18 lines) | stat: -rw-r--r-- 567 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import math
from test.json_tests import PyTest, CTest


class TestFloat:
    def test_floats(self):
        for num in [1617161771.7650001, math.pi, math.pi**100, math.pi**-100, 3.1]:
            self.assertEqual(float(self.dumps(num)), num)
            self.assertEqual(self.loads(self.dumps(num)), num)

    def test_ints(self):
        for num in [1, 1<<32, 1<<64]:
            self.assertEqual(self.dumps(num), str(num))
            self.assertEqual(int(self.dumps(num)), num)


class TestPyFloat(TestFloat, PyTest): pass
class TestCFloat(TestFloat, CTest): pass