(self)
| 569 | assert_array_equal(C, tgt) |
| 570 | |
| 571 | def test_rpartition(self): |
| 572 | A = self.A() |
| 573 | P = A.rpartition([b'3', b'M']) |
| 574 | tgt = [[(b'', b'', b' abc '), (b'', b'', b'')], |
| 575 | [(b'12', b'3', b'45'), (b'', b'M', b'ixedCase')], |
| 576 | [(b'123 \t ', b'3', b'45 \0 '), (b'', b'', b'UPPER')]] |
| 577 | assert_(issubclass(P.dtype.type, np.bytes_)) |
| 578 | assert_array_equal(P, tgt) |
| 579 | |
| 580 | def test_rsplit(self): |
| 581 | A = self.A().rsplit(b'3') |
nothing calls this directly
no test coverage detected