(self, patterns, matches)
| 359 | os.chdir(save) |
| 360 | |
| 361 | def check_match(self, patterns, matches): |
| 362 | with self.in_tempdir(): |
| 363 | # glob returns unordered list. that's why sorted is required. |
| 364 | nt.assert_equal(sorted(path.shellglob(patterns)), |
| 365 | sorted(matches)) |
| 366 | |
| 367 | def common_cases(self): |
| 368 | return [ |
nothing calls this directly
no test coverage detected