mailr10799 - in /1.3/test_suite: system_tests/__init__.py test_suite_runner.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 22, 2010 - 10:33:
Author: bugman
Date: Mon Feb 22 10:33:34 2010
New Revision: 10799

URL: http://svn.gna.org/viewcvs/relax?rev=10799&view=rev
Log:
The tests list is now optional.


Modified:
    1.3/test_suite/system_tests/__init__.py
    1.3/test_suite/test_suite_runner.py

Modified: 1.3/test_suite/system_tests/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/__init__.py?rev=10799&r1=10798&r2=10799&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/__init__.py (original)
+++ 1.3/test_suite/system_tests/__init__.py Mon Feb 22 10:33:34 2010
@@ -87,13 +87,13 @@
 class System_test_runner:
     """Class for executing all of the system/functional tests."""
 
-    def run(self, tests):
+    def run(self, tests=None):
         """Run the system/functional tests.
 
         The system test list should be something like 
['N_state_model.test_stereochem_analysis'].  The first part is the imported 
test case class, the second is the specific test.
 
 
-        @param tests:   The list of system tests to preform.
+        @keyword tests: The list of system tests to preform.
         @type tests:    list of str
         """
 

Modified: 1.3/test_suite/test_suite_runner.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/test_suite_runner.py?rev=10799&r1=10798&r2=10799&view=diff
==============================================================================
--- 1.3/test_suite/test_suite_runner.py (original)
+++ 1.3/test_suite/test_suite_runner.py Mon Feb 22 10:33:34 2010
@@ -43,13 +43,13 @@
         - Unit tests.
     """
 
-    def __init__(self, tests):
+    def __init__(self, tests=None):
         """Store the list of tests to preform.
 
         The test list should be something like 
['N_state_model.test_stereochem_analysis'].  The first part is the imported 
test case class, the second is the specific test.
 
 
-        @param tests:   The list of tests to preform.
+        @keyword tests: The list of tests to preform.
         @type tests:    list of str
         """
 




Related Messages


Powered by MHonArc, Updated Mon Feb 22 10:40:02 2010