2007-08-30 14:45:54 -03:00
|
|
|
"""Unit tests for numbers.py."""
|
|
|
|
|
2008-02-01 04:12:03 -04:00
|
|
|
import math
|
|
|
|
import operator
|
2007-08-30 14:45:54 -03:00
|
|
|
import unittest
|
|
|
|
from numbers import Complex, Real, Rational, Integral
|
2008-02-01 04:12:03 -04:00
|
|
|
from numbers import Number
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2007-08-30 14:45:54 -03:00
|
|
|
|
|
|
|
class TestNumbers(unittest.TestCase):
|
|
|
|
def test_int(self):
|
2009-08-13 05:51:18 -03:00
|
|
|
self.assertTrue(issubclass(int, Integral))
|
|
|
|
self.assertTrue(issubclass(int, Complex))
|
2007-08-30 14:45:54 -03:00
|
|
|
|
|
|
|
self.assertEqual(7, int(7).real)
|
|
|
|
self.assertEqual(0, int(7).imag)
|
|
|
|
self.assertEqual(7, int(7).conjugate())
|
|
|
|
self.assertEqual(7, int(7).numerator)
|
|
|
|
self.assertEqual(1, int(7).denominator)
|
|
|
|
|
|
|
|
def test_float(self):
|
2009-08-13 05:51:18 -03:00
|
|
|
self.assertFalse(issubclass(float, Rational))
|
|
|
|
self.assertTrue(issubclass(float, Real))
|
2007-08-30 14:45:54 -03:00
|
|
|
|
|
|
|
self.assertEqual(7.3, float(7.3).real)
|
|
|
|
self.assertEqual(0, float(7.3).imag)
|
|
|
|
self.assertEqual(7.3, float(7.3).conjugate())
|
|
|
|
|
|
|
|
def test_complex(self):
|
2009-08-13 05:51:18 -03:00
|
|
|
self.assertFalse(issubclass(complex, Real))
|
|
|
|
self.assertTrue(issubclass(complex, Complex))
|
2007-08-30 14:45:54 -03:00
|
|
|
|
|
|
|
c1, c2 = complex(3, 2), complex(4,1)
|
2008-02-01 04:12:03 -04:00
|
|
|
# XXX: This is not ideal, but see the comment in math_trunc().
|
|
|
|
self.assertRaises(TypeError, math.trunc, c1)
|
2007-08-30 14:45:54 -03:00
|
|
|
self.assertRaises(TypeError, operator.mod, c1, c2)
|
|
|
|
self.assertRaises(TypeError, divmod, c1, c2)
|
|
|
|
self.assertRaises(TypeError, operator.floordiv, c1, c2)
|
|
|
|
self.assertRaises(TypeError, float, c1)
|
|
|
|
self.assertRaises(TypeError, int, c1)
|
|
|
|
|
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
support.run_unittest(TestNumbers)
|
2007-08-30 14:45:54 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|