We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b26db5e commit b379ff6Copy full SHA for b379ff6
1 file changed
tests/test_main.py
@@ -17,6 +17,7 @@
17
distributions,
18
entry_points,
19
metadata,
20
+ packages_distributions,
21
version,
22
)
23
@@ -282,3 +283,9 @@ def test_unicode_dir_on_sys_path(self):
282
283
prefix=self.site_dir,
284
285
list(distributions())
286
+
287
288
+class PackagesDistributionsTest(fixtures.ZipFixtures, unittest.TestCase):
289
+ def test_packages_distributions_example(self):
290
+ self._fixture_on_path('example-21.12-py3-none-any.whl')
291
+ assert packages_distributions()['example'] == ['example']
0 commit comments