(self)
| 327 | ) |
| 328 | |
| 329 | def test_istitle(self): |
| 330 | A = self.A() |
| 331 | assert_(issubclass(A.istitle().dtype.type, np.bool)) |
| 332 | assert_array_equal( |
| 333 | A.istitle(), |
| 334 | [[False, False], [False, False], [False, False]], |
| 335 | ) |
| 336 | |
| 337 | def test_isupper(self): |
| 338 | A = self.A() |
nothing calls this directly
no test coverage detected