(self)
| 635 | assert_equal(A.tolist(), tgt) |
| 636 | |
| 637 | def test_splitlines(self): |
| 638 | A = np.char.array(['abc\nfds\nwer']).splitlines() |
| 639 | assert_(issubclass(A.dtype.type, np.object_)) |
| 640 | assert_(A.shape == (1,)) |
| 641 | assert_(len(A[0]) == 3) |
| 642 | |
| 643 | def test_swapcase(self): |
| 644 | A, B = self.A(), self.B() |
nothing calls this directly
no test coverage detected