(self)
| 90 | assert fnmatch_ex(pattern, path) |
| 91 | |
| 92 | def test_matching_abspath(self) -> None: |
| 93 | abspath = os.path.abspath(os.path.join("tests/foo.py")) |
| 94 | assert fnmatch_ex("tests/foo.py", abspath) |
| 95 | |
| 96 | @pytest.mark.parametrize( |
| 97 | "pattern, path", |
nothing calls this directly
no test coverage detected