(self)
| 44 | self.assertEqual(version('Example'), '21.12') |
| 45 | |
| 46 | def test_files(self): |
| 47 | for file in files('example'): |
| 48 | path = str(file.dist.locate_file(file)) |
| 49 | assert '.whl/' in path, path |
| 50 | |
| 51 | def test_one_distribution(self): |
| 52 | dists = list(distributions(path=sys.path[:1])) |
nothing calls this directly
no test coverage detected