Merge "Disable unsupported root-disable tests"
This commit is contained in:
commit
de963bc49b
@ -120,6 +120,42 @@ class MysqlRootActionsRunner(RootActionsRunner):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
|
||||
class PerconaRootActionsRunner(RootActionsRunner):
|
||||
|
||||
def run_disable_root_before_enabled(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_enable_root_with_password(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_disable_root(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
|
||||
class MariadbRootActionsRunner(RootActionsRunner):
|
||||
|
||||
def run_disable_root_before_enabled(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_enable_root_with_password(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_disable_root(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
|
||||
class PostgresqlRootActionsRunner(RootActionsRunner):
|
||||
|
||||
def run_disable_root_before_enabled(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_enable_root_with_password(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
def run_disable_root(self):
|
||||
raise SkipTest("Operation is currently not supported.")
|
||||
|
||||
|
||||
class CouchbaseRootActionsRunner(RootActionsRunner):
|
||||
|
||||
def run_disable_root_before_enabled(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user