(self)
| 3492 | self.assertRaises(TypeError, c.next_minus, '10') |
| 3493 | |
| 3494 | def test_next_plus(self): |
| 3495 | Decimal = self.decimal.Decimal |
| 3496 | Context = self.decimal.Context |
| 3497 | |
| 3498 | c = Context() |
| 3499 | d = c.next_plus(Decimal(10)) |
| 3500 | self.assertEqual(c.next_plus(10), d) |
| 3501 | self.assertRaises(TypeError, c.next_plus, '10') |
| 3502 | |
| 3503 | def test_next_toward(self): |
| 3504 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected