Update of /cvsroot/pymerase/pymerase/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv22078
Modified Files:
pymeraseTestSuite.py
Log Message:
Add TestSchool testsuite to the list of tests.
Index: pymeraseTestSuite.py
===================================================================
RCS file: /cvsroot/pymerase/pymerase/tests/pymeraseTestSuite.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pymeraseTestSuite.py 26 Mar 2003 03:13:26 -0000 1.1
--- pymeraseTestSuite.py 3 Apr 2003 00:43:16 -0000 1.2
***************
*** 41,44 ****
--- 41,45 ----
import TestImportAll
#Import new test suites here
+ import TestSchool
def suite():
***************
*** 50,53 ****
--- 51,55 ----
suite = unittest.TestSuite()
suite.addTest(TestImportAll.suite())
+ suite.addTest(TestSchool.suite())
#add new suite.addTest(module.suite()) here
|