summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_ipalib/__init__.py2
-rw-r--r--tests/test_ipalib/test_backend.py2
-rw-r--r--tests/test_ipalib/test_cli.py2
-rw-r--r--tests/test_ipalib/test_config.py2
-rw-r--r--tests/test_ipalib/test_crud.py2
-rw-r--r--tests/test_ipalib/test_errors.py2
-rw-r--r--tests/test_ipalib/test_frontend.py2
-rw-r--r--tests/test_ipalib/test_ipa_types.py2
-rw-r--r--tests/test_ipalib/test_plugable.py2
-rw-r--r--tests/test_ipalib/test_tstutil.py2
-rw-r--r--tests/test_ipalib/test_util.py2
11 files changed, 11 insertions, 11 deletions
diff --git a/tests/test_ipalib/__init__.py b/tests/test_ipalib/__init__.py
index d3658c451..b12bccc58 100644
--- a/tests/test_ipalib/__init__.py
+++ b/tests/test_ipalib/__init__.py
@@ -18,5 +18,5 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib` package.
+Test the `ipalib` package.
"""
diff --git a/tests/test_ipalib/test_backend.py b/tests/test_ipalib/test_backend.py
index 967e9fdfb..ddf665404 100644
--- a/tests/test_ipalib/test_backend.py
+++ b/tests/test_ipalib/test_backend.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.backend` module.
+Test the `ipalib.backend` module.
"""
from ipalib import backend, plugable, errors
diff --git a/tests/test_ipalib/test_cli.py b/tests/test_ipalib/test_cli.py
index 90c66d416..4095af6de 100644
--- a/tests/test_ipalib/test_cli.py
+++ b/tests/test_ipalib/test_cli.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.cli` module.
+Test the `ipalib.cli` module.
"""
from tstutil import raises, getitem, no_set, no_del, read_only, ClassChecker
diff --git a/tests/test_ipalib/test_config.py b/tests/test_ipalib/test_config.py
index de7d4c22c..242ce16b8 100644
--- a/tests/test_ipalib/test_config.py
+++ b/tests/test_ipalib/test_config.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.config` module.
+Test the `ipalib.config` module.
"""
import types
diff --git a/tests/test_ipalib/test_crud.py b/tests/test_ipalib/test_crud.py
index 9355f237e..fbfbfab1a 100644
--- a/tests/test_ipalib/test_crud.py
+++ b/tests/test_ipalib/test_crud.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.crud` module.
+Test the `ipalib.crud` module.
"""
from tstutil import read_only, raises, ClassChecker
diff --git a/tests/test_ipalib/test_errors.py b/tests/test_ipalib/test_errors.py
index 7d2df4dfe..7c81cf626 100644
--- a/tests/test_ipalib/test_errors.py
+++ b/tests/test_ipalib/test_errors.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.errors` module.
+Test the `ipalib.errors` module.
"""
from tstutil import raises, ClassChecker
diff --git a/tests/test_ipalib/test_frontend.py b/tests/test_ipalib/test_frontend.py
index c70cc00d7..d99c7bd9d 100644
--- a/tests/test_ipalib/test_frontend.py
+++ b/tests/test_ipalib/test_frontend.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.frontend` module.
+Test the `ipalib.frontend` module.
"""
from tstutil import raises, getitem, no_set, no_del, read_only, ClassChecker
diff --git a/tests/test_ipalib/test_ipa_types.py b/tests/test_ipalib/test_ipa_types.py
index b8e996a72..81261a357 100644
--- a/tests/test_ipalib/test_ipa_types.py
+++ b/tests/test_ipalib/test_ipa_types.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.ipa_types` module.
+Test the `ipalib.ipa_types` module.
"""
from tstutil import raises, getitem, no_set, no_del, read_only, ClassChecker
diff --git a/tests/test_ipalib/test_plugable.py b/tests/test_ipalib/test_plugable.py
index fd3c3c887..759ec3c41 100644
--- a/tests/test_ipalib/test_plugable.py
+++ b/tests/test_ipalib/test_plugable.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.plugable` module.
+Test the `ipalib.plugable` module.
"""
from tstutil import raises, no_set, no_del, read_only
diff --git a/tests/test_ipalib/test_tstutil.py b/tests/test_ipalib/test_tstutil.py
index 5916f9d24..c441ddb8e 100644
--- a/tests/test_ipalib/test_tstutil.py
+++ b/tests/test_ipalib/test_tstutil.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for test-helper `tests.tstutil` module.
+Test the `tests.tstutil` module.
"""
import tstutil
diff --git a/tests/test_ipalib/test_util.py b/tests/test_ipalib/test_util.py
index f8ee0bf4d..0423ad621 100644
--- a/tests/test_ipalib/test_util.py
+++ b/tests/test_ipalib/test_util.py
@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
-Unit tests for `ipalib.util` module.
+Test the `ipalib.util` module.
"""
from tstutil import raises