(self)
| 11 | |
| 12 | class PluginLoaderTest(unittest.TestCase): |
| 13 | def setUp(self): |
| 14 | self.plugin_loader = PluginLoader() |
| 15 | |
| 16 | def test_load_namespace_class(self): |
| 17 | package_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'resources', 'plugin_fixture') |
nothing calls this directly
no test coverage detected