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

Method test_islower

numpy/_core/tests/test_strings.py:323–325  ·  view source on GitHub ↗
(self, in_, out, dt)

Source from the content-addressed store, hash-verified

321 ('abc\n', True),
322 ])
323 def test_islower(self, in_, out, dt):
324 in_ = np.array(in_, dtype=dt)
325 assert_array_equal(np.strings.islower(in_), out)
326
327 @pytest.mark.parametrize("in_,out", [
328 ('', False),

Callers

nothing calls this directly

Calls 2

assert_array_equalFunction · 0.90
islowerMethod · 0.80

Tested by

no test coverage detected