(self)
| 694 | [False, False], [True, False], [False, False]]) |
| 695 | |
| 696 | def test_isdecimal(self): |
| 697 | A, B = self.A(), self.B() |
| 698 | |
| 699 | def fail(): |
| 700 | A.isdecimal() |
| 701 | |
| 702 | assert_raises(TypeError, fail) |
| 703 | assert_(issubclass(B.isdecimal().dtype.type, np.bool)) |
| 704 | assert_array_equal(B.isdecimal(), [ |
| 705 | [False, False], [True, False], [False, False]]) |
| 706 | |
| 707 | @ignore_charray_deprecation |
| 708 | class TestOperations: |
nothing calls this directly
no test coverage detected