(self, pattern: str, path: str)
| 87 | ], |
| 88 | ) |
| 89 | def test_matching(self, pattern: str, path: str) -> None: |
| 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")) |
nothing calls this directly
no test coverage detected