(self)
| 81 | assert 'Description' in item |
| 82 | |
| 83 | def test_list_plugins(self): |
| 84 | self.ensure_plugin_installed(SSHFS) |
| 85 | data = self.client.plugins() |
| 86 | assert len(data) > 0 |
| 87 | plugin = [p for p in data if p['Name'] == SSHFS][0] |
| 88 | assert 'Config' in plugin |
| 89 | |
| 90 | def test_configure_plugin(self): |
| 91 | pl_data = self.ensure_plugin_installed(SSHFS) |
nothing calls this directly
no test coverage detected