(self)
| 571 | [False, False], [True, False], [False, False]]) |
| 572 | |
| 573 | def test_isdecimal(self): |
| 574 | |
| 575 | def fail(): |
| 576 | self.A.isdecimal() |
| 577 | |
| 578 | assert_raises(TypeError, fail) |
| 579 | assert_(issubclass(self.B.isdecimal().dtype.type, np.bool_)) |
| 580 | assert_array_equal(self.B.isdecimal(), [ |
| 581 | [False, False], [True, False], [False, False]]) |
| 582 | |
| 583 | |
| 584 | class TestOperations: |
nothing calls this directly
no test coverage detected