(self)
| 102 | assert 'DEBUG=0' in pl_data['Settings']['Env'] |
| 103 | |
| 104 | def test_remove_plugin(self): |
| 105 | pl_data = self.ensure_plugin_installed(SSHFS) |
| 106 | assert pl_data['Enabled'] is False |
| 107 | assert self.client.remove_plugin(SSHFS) is True |
| 108 | |
| 109 | def test_force_remove_plugin(self): |
| 110 | self.ensure_plugin_installed(SSHFS) |
nothing calls this directly
no test coverage detected