(self)
| 3673 | self.assertRaises(TypeError, c.to_eng_string, '10') |
| 3674 | |
| 3675 | def test_to_sci_string(self): |
| 3676 | Decimal = self.decimal.Decimal |
| 3677 | Context = self.decimal.Context |
| 3678 | |
| 3679 | c = Context() |
| 3680 | d = c.to_sci_string(Decimal(10)) |
| 3681 | self.assertEqual(c.to_sci_string(10), d) |
| 3682 | self.assertRaises(TypeError, c.to_sci_string, '10') |
| 3683 | |
| 3684 | def test_to_integral_exact(self): |
| 3685 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected