(self, pattern: str, path: str)
| 108 | ], |
| 109 | ) |
| 110 | def test_not_matching(self, pattern: str, path: str) -> None: |
| 111 | assert not fnmatch_ex(pattern, path) |
| 112 | |
| 113 | |
| 114 | @pytest.fixture(params=[True, False]) |
nothing calls this directly
no test coverage detected