aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2011-08-13 10:28:44 +0200
committerMichał Górny <mgorny@gentoo.org>2011-08-13 10:28:44 +0200
commit85b50a8ed11cfa6ef1f12bc52e624fec8847e1bb (patch)
tree628921e6488f571ce4c2681eb426e028e0386c86 /pmstestsuite/output
parentBump development status. (diff)
downloadpms-test-suite-85b50a8ed11cfa6ef1f12bc52e624fec8847e1bb.tar.gz
pms-test-suite-85b50a8ed11cfa6ef1f12bc52e624fec8847e1bb.tar.bz2
pms-test-suite-85b50a8ed11cfa6ef1f12bc52e624fec8847e1bb.zip
Improve docs.
Diffstat (limited to 'pmstestsuite/output')
-rw-r--r--pmstestsuite/output/cli.py2
-rw-r--r--pmstestsuite/output/html.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/pmstestsuite/output/cli.py b/pmstestsuite/output/cli.py
index c11e0be..d07fbfa 100644
--- a/pmstestsuite/output/cli.py
+++ b/pmstestsuite/output/cli.py
@@ -5,6 +5,8 @@
from . import OutputModule
class CLIOutput(OutputModule):
+ """ Command-line output module. """
+
name = 'cli'
def __call__(self, allresults, verbose = False):
diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py
index 1e497b1..71ea2ac 100644
--- a/pmstestsuite/output/html.py
+++ b/pmstestsuite/output/html.py
@@ -9,6 +9,8 @@ from abc import abstractmethod
from . import OutputModule
class HTMLOutput(OutputModule):
+ """ HTML output module. """
+
name = 'html'
def __init__(self, path = None):