(self)
| 258 | assert_array_equal(self.A.isalnum(), [[False, False], [True, True], [False, True]]) |
| 259 | |
| 260 | def test_isalpha(self): |
| 261 | assert_(issubclass(self.A.isalpha().dtype.type, np.bool_)) |
| 262 | assert_array_equal(self.A.isalpha(), [[False, False], [False, True], [False, True]]) |
| 263 | |
| 264 | def test_isdigit(self): |
| 265 | assert_(issubclass(self.A.isdigit().dtype.type, np.bool_)) |
nothing calls this directly
no test coverage detected