From 5c47261df596cc67410eb11db15bf0f8543e516f Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Sun, 4 Jan 2009 19:45:53 -0700 Subject: Renamed all references to 'ipa_webui' to 'ipawebui' --- tests/test_ipa_webui/__init__.py | 2 +- tests/test_ipa_webui/test_controllers.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/test_ipa_webui/__init__.py b/tests/test_ipa_webui/__init__.py index 29fa0cd0d..f739a8563 100644 --- a/tests/test_ipa_webui/__init__.py +++ b/tests/test_ipa_webui/__init__.py @@ -17,5 +17,5 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Sub-package containing unit tests for `ipa_webui` package. +Sub-package containing unit tests for `ipawebui` package. """ diff --git a/tests/test_ipa_webui/test_controllers.py b/tests/test_ipa_webui/test_controllers.py index f5944dd9e..e236d1a0b 100644 --- a/tests/test_ipa_webui/test_controllers.py +++ b/tests/test_ipa_webui/test_controllers.py @@ -17,10 +17,10 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Test the `ipa_webui.controller` module. +Test the `ipawebui.controller` module. """ -from ipa_webui import controller +from ipawebui import controller @@ -31,7 +31,7 @@ class test_Controller(object): def test_init(self): """ - Test the `ipa_webui.controller.Controller.__init__()` method. + Test the `ipawebui.controller.Controller.__init__()` method. """ o = controller.Controller() assert o.template is None @@ -41,7 +41,7 @@ class test_Controller(object): def test_output_xhtml(self): """ - Test the `ipa_webui.controller.Controller.output_xhtml` method. + Test the `ipawebui.controller.Controller.output_xhtml` method. """ class Template(object): def __init__(self): @@ -61,7 +61,7 @@ class test_Controller(object): def test_output_json(self): """ - Test the `ipa_webui.controller.Controller.output_json` method. + Test the `ipawebui.controller.Controller.output_json` method. """ o = controller.Controller() assert o.output_json() == '{}' -- cgit