(self)
| 38 | self.assertEqual(version('Example'), '21.12') |
| 39 | |
| 40 | def test_files(self): |
| 41 | for file in files('example'): |
| 42 | path = str(file.dist.locate_file(file)) |
| 43 | assert '.whl/' in path, path |
| 44 | |
| 45 | def test_one_distribution(self): |
| 46 | dists = list(distributions(path=sys.path[:1])) |
nothing calls this directly
no test coverage detected