(self)
| 66 | self.client.disable_plugin(SSHFS) |
| 67 | |
| 68 | def test_inspect_plugin(self): |
| 69 | self.ensure_plugin_installed(SSHFS) |
| 70 | data = self.client.inspect_plugin(SSHFS) |
| 71 | assert 'Config' in data |
| 72 | assert 'Name' in data |
| 73 | assert data['Name'] == SSHFS |
| 74 | |
| 75 | def test_plugin_privileges(self): |
| 76 | prv = self.client.plugin_privileges(SSHFS) |
nothing calls this directly
no test coverage detected