(pat, case, na, exp)
| 1973 | ], |
| 1974 | ) |
| 1975 | def test_str_fullmatch(pat, case, na, exp): |
| 1976 | ser = pd.Series(["abc", "abc$", "$abc", None], dtype=ArrowDtype(pa.string())) |
| 1977 | result = ser.str.fullmatch(pat, case=case, na=na) |
| 1978 | expected = pd.Series(exp, dtype=ArrowDtype(pa.bool_())) |
| 1979 | tm.assert_series_equal(result, expected) |
| 1980 | |
| 1981 | |
| 1982 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected