(self)
| 3488 | self.assertRaises(TypeError, c.multiply, 1, '2') |
| 3489 | |
| 3490 | def test_next_minus(self): |
| 3491 | Decimal = self.decimal.Decimal |
| 3492 | Context = self.decimal.Context |
| 3493 | |
| 3494 | c = Context() |
| 3495 | d = c.next_minus(Decimal(10)) |
| 3496 | self.assertEqual(c.next_minus(10), d) |
| 3497 | self.assertRaises(TypeError, c.next_minus, '10') |
| 3498 | |
| 3499 | def test_next_plus(self): |
| 3500 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected