summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-07 21:25:23 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-07 21:25:23 -0600
commitaf56c71d506c2573f99a1ca8334cfa90dc7f74d7 (patch)
tree3955f285ff963695d0beb0bc5f66424cfdfa4379
parent151b8ba38a33184ecc6e20dd8ffac1971e4a5b1e (diff)
downloadfreeipa-af56c71d506c2573f99a1ca8334cfa90dc7f74d7.tar.gz
freeipa-af56c71d506c2573f99a1ca8334cfa90dc7f74d7.tar.xz
freeipa-af56c71d506c2573f99a1ca8334cfa90dc7f74d7.zip
Cleaned up package and module level docstrings for everything in tests/
-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 d3658c45..b12bccc5 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 967e9fdf..ddf66540 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 90c66d41..4095af6d 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 de7d4c22..242ce16b 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 9355f237..fbfbfab1 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 7d2df4df..7c81cf62 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 c70cc00d..d99c7bd9 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 b8e996a7..81261a35 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 fd3c3c88..759ec3c4 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 5916f9d2..c441ddb8 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 f8ee0bf4..0423ad62 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