(self, in_, out, dt)
| 1176 | ('\U0001F46F', False), |
| 1177 | ]) |
| 1178 | def test_istitle_unicode(self, in_, out, dt): |
| 1179 | in_ = np.array(in_, dtype=dt) |
| 1180 | assert_array_equal(np.strings.istitle(in_), out) |
| 1181 | |
| 1182 | @pytest.mark.parametrize("buf,sub,start,end,res", [ |
| 1183 | ("Ae¢☃€ 😊" * 2, "😊", 0, None, 6), |
nothing calls this directly
no test coverage detected