(self)
| 516 | assert_equal(A.tolist(), tgt) |
| 517 | |
| 518 | def test_splitlines(self): |
| 519 | A = np.char.array(['abc\nfds\nwer']).splitlines() |
| 520 | assert_(issubclass(A.dtype.type, np.object_)) |
| 521 | assert_(A.shape == (1,)) |
| 522 | assert_(len(A[0]) == 3) |
| 523 | |
| 524 | def test_swapcase(self): |
| 525 | tgt = [[b' ABC ', b''], |
nothing calls this directly
no test coverage detected