self.assertFalse(self.zero)
self.assertTrue(self.pi)
- def test_fromstring(self):
- self.assertEqual(Rational.fromstring('22/7'), self.pi)
- with self.assertRaises(ValueError):
- Rational.fromstring('a')
- with self.assertRaises(TypeError):
- Rational.fromstring(1)
-
def test_repr(self):
self.assertEqual(repr(self.zero), '0')
self.assertEqual(repr(self.one), '1')