(self)
| 39 | assert MODELS.get('dummy-model', 'dummy-group') is not None |
| 40 | |
| 41 | def test_custom_plugins(self): |
| 42 | with pushd(self.plugins_root): |
| 43 | available_plugins = set(discover_plugins()) |
| 44 | assert available_plugins == {'dummy'} |
| 45 | |
| 46 | import_plugins(['dummy']) |
| 47 | assert MODELS.get('dummy-model', 'dummy-group') is not None |
| 48 | |
| 49 | def test_all_plugins(self): |
| 50 | with pushd(self.plugins_root): |
nothing calls this directly
no test coverage detected