Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/tutorius/tests/run-tests.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-04-16 18:54:50 (GMT)
committer simpoir <simpoir@gmail.com>2009-04-23 17:31:01 (GMT)
commitd66690142b643401429bfff84d42acac002e1980 (patch)
tree9a1d85532ec9e17373cac51df5ca2f988161015f /src/sugar/tutorius/tests/run-tests.py
parent78de92cde03264725093868231bdb539feb4f56b (diff)
LP 348570 Core : Integrating properties to actions; adding tests
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index 63a8de1..87edd57 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -40,7 +40,6 @@ if __name__=='__main__':
import filterstests
import constraintstests
import propertiestests
-
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
@@ -52,7 +51,6 @@ if __name__=='__main__':
suite.addTests(unittest.findTestCases(filterstests))
suite.addTests(unittest.findTestCases(constraintstests))
suite.addTests(unittest.findTestCases(propertiestests))
-
runner = unittest.TextTestRunner()
runner.run(suite)
@@ -69,5 +67,8 @@ if __name__=='__main__':
from linear_creatortests import *
from uamtests import *
from filterstests import *
+ from constraintstests import *
+ from propertiestests import *
+ from actiontests import *
unittest.main()