(self)
| 49 | assert '.whl/' in path, path |
| 50 | |
| 51 | def test_one_distribution(self): |
| 52 | dists = list(distributions(path=sys.path[:1])) |
| 53 | assert len(dists) == 1 |
| 54 | |
| 55 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 56 | @requires_fork() |
nothing calls this directly
no test coverage detected