(self)
| 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_)) |
| 266 | assert_array_equal(self.A.isdigit(), [[False, False], [True, False], [False, False]]) |
| 267 | |
| 268 | def test_islower(self): |
| 269 | assert_(issubclass(self.A.islower().dtype.type, np.bool_)) |
nothing calls this directly
no test coverage detected