(self)
| 241 | .view(np.char.chararray) |
| 242 | |
| 243 | def test_len(self): |
| 244 | A, B = self.A(), self.B() |
| 245 | assert_(issubclass(np.char.str_len(A).dtype.type, np.integer)) |
| 246 | assert_array_equal(np.char.str_len(A), [[5, 0], [5, 9], [12, 5]]) |
| 247 | assert_array_equal(np.char.str_len(B), [[3, 0], [5, 9], [12, 5]]) |
| 248 | |
| 249 | def test_count(self): |
| 250 | A, B = self.A(), self.B() |
nothing calls this directly
no test coverage detected