(self, in_, out, dt)
| 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), |
nothing calls this directly
no test coverage detected