summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration
diff options
context:
space:
mode:
authorOleg Fayans <ofayans@redhat.com>2016-09-09 14:15:05 +0200
committerDavid Kupka <dkupka@redhat.com>2016-09-22 15:20:42 +0200
commit759bbcdfcbeade91c77b201c439c939d6477cd08 (patch)
treec217add58305c61f057c5b11bda8cba6b6f7e5e7 /ipatests/test_integration
parenta81d8472042f4909020c073ecb00a37d8e05ec33 (diff)
downloadfreeipa-759bbcdfcbeade91c77b201c439c939d6477cd08.tar.gz
freeipa-759bbcdfcbeade91c77b201c439c939d6477cd08.tar.xz
freeipa-759bbcdfcbeade91c77b201c439c939d6477cd08.zip
tests: Removed outdated command options test
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipatests/test_integration')
-rw-r--r--ipatests/test_integration/test_caless.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py
index 73587f59f..2044d92e8 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"