(self)
| 365 | sorted(matches)) |
| 366 | |
| 367 | def common_cases(self): |
| 368 | return [ |
| 369 | (['*'], self.filenames), |
| 370 | (['a*'], self.filenames_start_with_a), |
| 371 | (['*c'], ['*c']), |
| 372 | (['*', 'a*', '*b', '*c'], self.filenames |
| 373 | + self.filenames_start_with_a |
| 374 | + self.filenames_end_with_b |
| 375 | + ['*c']), |
| 376 | (['a[012]'], self.filenames_start_with_a), |
| 377 | ] |
| 378 | |
| 379 | @skip_win32 |
| 380 | def test_match_posix(self): |
no outgoing calls
no test coverage detected