(self)
| 47 | assert MODELS.get('dummy-model', 'dummy-group') is not None |
| 48 | |
| 49 | def test_all_plugins(self): |
| 50 | with pushd(self.plugins_root): |
| 51 | available_plugins = set(discover_plugins()) |
| 52 | assert available_plugins == {'dummy'} |
| 53 | |
| 54 | import_all_plugins() |
| 55 | assert MODELS.get('dummy-model', 'dummy-group') is not None |
| 56 | |
| 57 | def test_install_plugins(self): |
| 58 | """ |
nothing calls this directly
no test coverage detected