summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-01-17 17:30:11 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-01-17 17:30:11 -0500
commitcca8b7f4dc8af9ef5411ca299700132c9af5b9c8 (patch)
treed6d5cf1796149366d18909a6fe069b40a224af83 /test
parentf9a7425dd6ba8f360141922e2c18badb7979d0ea (diff)
downloadthird_party-func-cca8b7f4dc8af9ef5411ca299700132c9af5b9c8.tar.gz
third_party-func-cca8b7f4dc8af9ef5411ca299700132c9af5b9c8.tar.xz
third_party-func-cca8b7f4dc8af9ef5411ca299700132c9af5b9c8.zip
add attributes to the automagic introspection tests so we can turn them off
easy if we want, aka nosetests -a \!intro
Diffstat (limited to 'test')
-rw-r--r--test/unittest/test_client.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unittest/test_client.py b/test/unittest/test_client.py
index 9ba4d05..12cb40b 100644
--- a/test/unittest/test_client.py
+++ b/test/unittest/test_client.py
@@ -31,6 +31,11 @@ class BaseTest:
result = mod.module_description()
assert type(result[self.th]) != xmlrpclib.Fault
+ test_module_version.intro = True
+ test_module_api_version.intro = True
+ test_module_description.intro = True
+
+
class TestTest(BaseTest):
module = "test"
def test_add(self):
@@ -258,3 +263,5 @@ class TestSystem(BaseTest):
def test_module_description(self):
pass
+
+