summaryrefslogtreecommitdiffstats
path: root/ipatests/test_ipalib
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2015-06-08 12:35:29 +0000
committerJan Cholasta <jcholast@redhat.com>2015-07-01 13:05:30 +0000
commit5b39bc10033888c9d5e25ce37d6a6796221f12ad (patch)
tree9f268832191af176d9485397836ea106b408ce31 /ipatests/test_ipalib
parent2b12bca660e5dd65256e67b0815392173428247d (diff)
downloadfreeipa-5b39bc10033888c9d5e25ce37d6a6796221f12ad.tar.gz
freeipa-5b39bc10033888c9d5e25ce37d6a6796221f12ad.tar.xz
freeipa-5b39bc10033888c9d5e25ce37d6a6796221f12ad.zip
plugable: Remove unused call method of Plugin
https://fedorahosted.org/freeipa/ticket/3090 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipatests/test_ipalib')
-rw-r--r--ipatests/test_ipalib/test_plugable.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/ipatests/test_ipalib/test_plugable.py b/ipatests/test_ipalib/test_plugable.py
index eb16cce2c..c0b88d1f9 100644
--- a/ipatests/test_ipalib/test_plugable.py
+++ b/ipatests/test_ipalib/test_plugable.py
@@ -97,16 +97,6 @@ class test_Plugin(ClassChecker):
o.finalize()
assert o.__islocked__()
- def test_call(self):
- """
- Test the `ipalib.plugable.Plugin.call` method.
- """
- o = self.cls()
- o.call(paths.BIN_TRUE) is None
- e = raises(errors.SubprocessError, o.call, paths.BIN_FALSE)
- assert e.returncode == 1
- assert e.argv == (paths.BIN_FALSE,)
-
def test_Registrar():
"""