summaryrefslogtreecommitdiffstats
path: root/tests/test_ipa_server
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-12-08 16:56:24 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-12-08 16:56:24 -0700
commit7e21ea5ad826e65da10d7a12917fd4d0d4f1874e (patch)
tree4c3cd50bd5fc6a7486535de8b10af1ee90ccc52a /tests/test_ipa_server
parent4591057203e61a4ab304b8730ffede6560f74d4b (diff)
downloadfreeipa.git-7e21ea5ad826e65da10d7a12917fd4d0d4f1874e.tar.gz
freeipa.git-7e21ea5ad826e65da10d7a12917fd4d0d4f1874e.tar.xz
freeipa.git-7e21ea5ad826e65da10d7a12917fd4d0d4f1874e.zip
Fixed Warning messages about log dir in unit test
Diffstat (limited to 'tests/test_ipa_server')
-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 f73f6cd0..9c6cf23a 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)