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

Method test_isspace

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

Source from the content-addressed store, hash-verified

319 assert_array_equal(A.islower(), [[True, False], [False, False], [False, False]])
320
321 def test_isspace(self):
322 A = self.A()
323 assert_(issubclass(A.isspace().dtype.type, np.bool))
324 assert_array_equal(
325 A.isspace(),
326 [[False, False], [False, False], [False, False]],
327 )
328
329 def test_istitle(self):
330 A = self.A()

Callers

nothing calls this directly

Calls 4

AMethod · 0.95
assert_Function · 0.90
assert_array_equalFunction · 0.90
isspaceMethod · 0.80

Tested by

no test coverage detected