(self, path, full_path, pattern)
| 368 | return sys.modules[name] |
| 369 | |
| 370 | def _match_path(self, path, full_path, pattern): |
| 371 | # override this method to use alternative matching strategy |
| 372 | return fnmatch(path, pattern) |
| 373 | |
| 374 | def _find_tests(self, start_dir, pattern, namespace=False): |
| 375 | """Used by discovery. Yields test suites it loads.""" |
no test coverage detected