(self)
| 3297 | self.assertRaises(TypeError, c.is_normal, '10') |
| 3298 | |
| 3299 | def test_is_qnan(self): |
| 3300 | Decimal = self.decimal.Decimal |
| 3301 | Context = self.decimal.Context |
| 3302 | |
| 3303 | c = Context() |
| 3304 | d = c.is_qnan(Decimal(10)) |
| 3305 | self.assertEqual(c.is_qnan(10), d) |
| 3306 | self.assertRaises(TypeError, c.is_qnan, '10') |
| 3307 | |
| 3308 | def test_is_signed(self): |
| 3309 | Decimal = self.decimal.Decimal |
nothing calls this directly
no test coverage detected