summaryrefslogtreecommitdiffstats
path: root/tests/test_ipa_server/test_rpc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ipa_server/test_rpc.py')
-rw-r--r--tests/test_ipa_server/test_rpc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_ipa_server/test_rpc.py b/tests/test_ipa_server/test_rpc.py
index f73f6cd0d..9c6cf23a3 100644
--- a/tests/test_ipa_server/test_rpc.py
+++ b/tests/test_ipa_server/test_rpc.py
@@ -74,3 +74,7 @@ class test_xmlrpc(PluginTester):
options = dict(option1=u'How are you?', option2=unicode_str)
assert call((arg1, arg2, options)) == (arg1, arg2, options)
assert call((arg1,) + arg2 + (options,)) == (arg1, arg2, options)
+
+
+ def test_execute(self):
+ (o, api, home) = self.instance('Backend', in_server=True)