summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-04 18:39:39 -0700
committerJason Gerard DeRose <jderose@redhat.com>2009-01-04 18:39:39 -0700
commit6fe78a4944f11d430b724103f7d8d49c92af9b63 (patch)
treee4a771b15ab5be4a838183e059c74482d92db007 /tests
parentff66c7ece65a042b645b2cdaef700f143727cc2f (diff)
downloadfreeipa-6fe78a4944f11d430b724103f7d8d49c92af9b63.tar.gz
freeipa-6fe78a4944f11d430b724103f7d8d49c92af9b63.tar.xz
freeipa-6fe78a4944f11d430b724103f7d8d49c92af9b63.zip
Renamed all references to 'ipa_server' to 'ipaserver'
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ipa_server/__init__.py2
-rw-r--r--tests/test_ipa_server/test_rpc.py10
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_ipa_server/__init__.py b/tests/test_ipa_server/__init__.py
index 5cf883dbd..56a6c533c 100644
--- a/tests/test_ipa_server/__init__.py
+++ b/tests/test_ipa_server/__init__.py
@@ -18,5 +18,5 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Sub-package containing unit tests for `ipa_server` package.
+Sub-package containing unit tests for `ipaserver` package.
"""
diff --git a/tests/test_ipa_server/test_rpc.py b/tests/test_ipa_server/test_rpc.py
index 9c6cf23a3..07191fda1 100644
--- a/tests/test_ipa_server/test_rpc.py
+++ b/tests/test_ipa_server/test_rpc.py
@@ -18,18 +18,18 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Test the `ipa_server.rpc` module.
+Test the `ipaserver.rpc` module.
"""
from tests.util import create_test_api, raises, PluginTester
from tests.data import unicode_str
from ipalib import errors, Command
-from ipa_server import rpc
+from ipaserver import rpc
def test_params_2_args_options():
"""
- Test the `ipa_server.rpc.params_2_args_options` function.
+ Test the `ipaserver.rpc.params_2_args_options` function.
"""
f = rpc.params_2_args_options
args = ('Hello', u'world!')
@@ -43,14 +43,14 @@ def test_params_2_args_options():
class test_xmlrpc(PluginTester):
"""
- Test the `ipa_server.rpc.xmlrpc` plugin.
+ Test the `ipaserver.rpc.xmlrpc` plugin.
"""
_plugin = rpc.xmlrpc
def test_dispatch(self):
"""
- Test the `ipa_server.rpc.xmlrpc.dispatch` method.
+ Test the `ipaserver.rpc.xmlrpc.dispatch` method.
"""
(o, api, home) = self.instance('Backend', in_server=True)
e = raises(errors.CommandError, o.dispatch, 'echo', tuple())