diff --git a/importlib_resources/tests/test_resource.py b/importlib_resources/tests/test_resource.py index 4036805..de7d734 100644 --- a/importlib_resources/tests/test_resource.py +++ b/importlib_resources/tests/test_resource.py @@ -209,5 +209,13 @@ def tearDownClass(cls): sys.path.remove(cls.site_dir) +class ResourceFromNamespaceZipTests( + util.ZipSetupBase, + ResourceFromNamespaceTests, + unittest.TestCase, +): + ZIP_MODULE = 'namespacedata01' + + if __name__ == '__main__': unittest.main()