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

Method test_isupper_unicode

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

Source from the content-addressed store, hash-verified

1162 ('\U0001044E', False),
1163 ])
1164 def test_isupper_unicode(self, in_, out, dt):
1165 in_ = np.array(in_, dtype=dt)
1166 assert_array_equal(np.strings.isupper(in_), out)
1167
1168 @pytest.mark.parametrize("in_,out", [
1169 ('\u1FFc', True),

Callers

nothing calls this directly

Calls 2

assert_array_equalFunction · 0.90
isupperMethod · 0.80

Tested by

no test coverage detected