(self, pattern: str, path: str)
| 52 | ], |
| 53 | ) |
| 54 | def test_matching(self, pattern: str, path: str) -> None: |
| 55 | assert fnmatch_ex(pattern, path) |
| 56 | |
| 57 | def test_matching_abspath(self) -> None: |
| 58 | abspath = os.path.abspath(os.path.join("tests/foo.py")) |
nothing calls this directly
no test coverage detected