MCPcopy Index your code
hub / github.com/numpy/numpy / test_istitle

Method test_istitle

numpy/_core/tests/test_defchararray.py:329–335  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 4

AMethod · 0.95
assert_Function · 0.90
assert_array_equalFunction · 0.90
istitleMethod · 0.80

Tested by

no test coverage detected