From 759bbcdfcbeade91c77b201c439c939d6477cd08 Mon Sep 17 00:00:00 2001 From: Oleg Fayans Date: Sep 22 2016 13:20:42 +0000 Subject: tests: Removed outdated command options test Reviewed-By: David Kupka --- diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py index 73587f5..2044d92 100644 --- a/ipatests/test_integration/test_caless.py +++ b/ipatests/test_integration/test_caless.py @@ -1188,25 +1188,6 @@ class TestIPACommands(CALessBase): result = self.master.run_command(['ipa', command], raiseonerr=False) assert_error(result, "ipa: ERROR: unknown command '%s'" % command) - @pytest.mark.parametrize('command', ( - 'cert-status', - 'cert-show', - 'cert-find', - 'cert-revoke', - 'cert-remove-hold', - 'cert-status')) - def test_cert_commands_unavailable(self, command): - result = self.master.run_command(['ipa', command], raiseonerr=False) - assert_error(result, "ipa: ERROR: unknown command '%s'" % command) - - def test_cert_help_unavailable(self): - "Verify that cert plugin help is not available" - result = self.master.run_command(['ipa', 'help', 'cert'], - raiseonerr=False) - assert_error(result, - "ipa: ERROR: no command nor help topic 'cert'", - returncode=1) - @contextlib.contextmanager def host(self): "Context manager that adds and removes a host entry with a certificate"