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

Method test_islower

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

Source from the content-addressed store, hash-verified

314 assert_array_equal(A.isdigit(), [[False, False], [True, False], [False, False]])
315
316 def test_islower(self):
317 A = self.A()
318 assert_(issubclass(A.islower().dtype.type, np.bool))
319 assert_array_equal(A.islower(), [[True, False], [False, False], [False, False]])
320
321 def test_isspace(self):
322 A = self.A()

Callers

nothing calls this directly

Calls 4

AMethod · 0.95
assert_Function · 0.90
assert_array_equalFunction · 0.90
islowerMethod · 0.80

Tested by

no test coverage detected