Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rousselie <dax@happycoders.org>2006-08-14 20:16:54 +0400
committerDavid Rousselie <dax@happycoders.org>2006-08-14 20:16:54 +0400
commit12b03085728be65ff42ed4a01db148eceeefd710 (patch)
treef4898e6b9e48c2313a72b109474969e6dd73f8c8 /run_tests.py
parent8e524449cfc34f4b015be21f4045d1377da7b2f5 (diff)
First JCLComponent implementation
darcs-hash:20060814161654-86b55-e6f2553e9ebae6bb8b057795ddc4f53e449a5c68.gz
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 70f44d1..1debef5 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -35,6 +35,7 @@ sys.setdefaultencoding('utf8')
del sys.setdefaultencoding
import tests
+from tests.jcl.jabber.test_component import *
from tests.jcl.jabber.test_feeder import *
import jcl
@@ -44,12 +45,19 @@ if __name__ == '__main__':
logger.addHandler(logging.StreamHandler())
logger.setLevel(logging.INFO)
+ component_suite = unittest.makeSuite(JCLComponent_TestCase, "test")
+ feeder_component_suite = unittest.makeSuite(FeederComponent_TestCase, "test")
feeder_suite = unittest.makeSuite(Feeder_TestCase, "test")
+ sender_suite = unittest.makeSuite(Sender_TestCase, "test")
- jcl_suite = unittest.TestSuite((feeder_suite))
+ jcl_suite = unittest.TestSuite((component_suite,
+ feeder_component_suite,
+ feeder_suite,
+ sender_suite))
test_support.run_suite(jcl_suite)
coverage.stop()
coverage.analysis(jcl.jabber.component)
-coverage.report([jcl.jabber.component])
+coverage.analysis(jcl.jabber.feeder)
+coverage.report([jcl.jabber.component, jcl.jabber.feeder])