(self)
| 255 | |
| 256 | class TestIsGlobPattern(unittest.TestCase): |
| 257 | def test_star(self) -> None: |
| 258 | self.assertTrue(is_glob_pattern("*.py")) |
| 259 | |
| 260 | def test_question_mark(self) -> None: |
| 261 | self.assertTrue(is_glob_pattern("file?.txt")) |
nothing calls this directly
no test coverage detected