(self)
| 107 | assert self.client.remove_plugin(SSHFS) is True |
| 108 | |
| 109 | def test_force_remove_plugin(self): |
| 110 | self.ensure_plugin_installed(SSHFS) |
| 111 | self.client.enable_plugin(SSHFS) |
| 112 | assert self.client.inspect_plugin(SSHFS)['Enabled'] is True |
| 113 | assert self.client.remove_plugin(SSHFS, force=True) is True |
| 114 | |
| 115 | def test_install_plugin(self): |
| 116 | try: |
nothing calls this directly
no test coverage detected