(self)
| 387 | |
| 388 | @skip_if_not_win32 |
| 389 | def test_match_windows(self): |
| 390 | for (patterns, matches) in self.common_cases() + [ |
| 391 | # In windows, backslash is interpreted as path |
| 392 | # separator. Therefore, you can't escape glob |
| 393 | # using it. |
| 394 | ([r'a\*', 'a*'], [r'a\*'] + self.filenames_start_with_a), |
| 395 | ([r'a\[012]'], [r'a\[012]']), |
| 396 | ]: |
| 397 | yield (self.check_match, patterns, matches) |
| 398 | |
| 399 | |
| 400 | def test_unescape_glob(): |
nothing calls this directly
no test coverage detected