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>2007-03-22 19:15:01 +0300
committerDavid Rousselie <dax@happycoders.org>2007-03-22 19:15:01 +0300
commit101e74f6c78f4b965d6cea4e166b1e9976aeb6d9 (patch)
treef2dbe820d8f5bcaa2db9c20cfdb9a53c6e3e7d93 /run_tests.py
parent6753545187e9d98ea98a20d16e1bd4f789f4686e (diff)
account default_func and post_func refactoring
for registration fields, default_func now returns default_value and post_func include test for mandatory fields. darcs-hash:20070322161501-86b55-75b6d57fef3ba0df6c6c80a487c9afcdab2d40c3.gz
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 58448a8..06b2b08 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -58,9 +58,11 @@ if __name__ == '__main__':
jcl_suite = unittest.TestSuite()
# jcl_suite.addTest(FeederComponent_TestCase('test_handle_tick'))
-# jcl_suite.addTest(JCLComponent_TestCase('test_run_unhandled_error'))
-# jcl_suite = unittest.TestSuite((component_suite))
+# jcl_suite.addTest(JCLComponent_TestCase('test_handle_get_register_exist_complex'))
+# jcl_suite.addTest(AccountModule_TestCase('test_mandatory_field'))
+# jcl_suite = unittest.TestSuite((account_module_suite))
# jcl_suite = unittest.TestSuite((presence_account_suite))
+
jcl_suite = unittest.TestSuite((component_suite, \
feeder_component_suite, \
feeder_suite, \
@@ -69,6 +71,7 @@ if __name__ == '__main__':
account_module_suite, \
account_suite, \
presence_account_suite))
+
test_support.run_suite(jcl_suite)