From 6fe78a4944f11d430b724103f7d8d49c92af9b63 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Sun, 4 Jan 2009 18:39:39 -0700 Subject: Renamed all references to 'ipa_server' to 'ipaserver' --- tests/test_ipa_server/__init__.py | 2 +- tests/test_ipa_server/test_rpc.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tests') 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()) -- cgit