Merge "Disable unsupported root-disable tests"

This commit is contained in:
Jenkins 2016-02-18 17:22:29 +00:00 committed by Gerrit Code Review
commit de963bc49b

View File

@ -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):