(any_string_dtype, pat, expected_data)
| 755 | ], |
| 756 | ) |
| 757 | def test_extractall_lookarounds(any_string_dtype, pat, expected_data): |
| 758 | # https://github.com/pandas-dev/pandas/issues/60833 |
| 759 | ser = Series(["aa", "ab", "ba", "bb", None], dtype=any_string_dtype) |
| 760 | result = ser.str.extractall(pat) |
| 761 | expected = Series(expected_data, dtype=any_string_dtype).to_frame() |
| 762 | expected.index.names = [None, "match"] |
| 763 | tm.assert_frame_equal(result, expected) |
| 764 | |
| 765 | |
| 766 | def test_extract_end_of_string(any_string_dtype): |
nothing calls this directly
no test coverage detected