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

Method test_isupper

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

Source from the content-addressed store, hash-verified

334 ('ABC\n', True),
335 ])
336 def test_isupper(self, in_, out, dt):
337 in_ = np.array(in_, dtype=dt)
338 assert_array_equal(np.strings.isupper(in_), out)
339
340 @pytest.mark.parametrize("in_,out", [
341 ('', False),

Callers

nothing calls this directly

Calls 2

assert_array_equalFunction · 0.90
isupperMethod · 0.80

Tested by

no test coverage detected