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-06 17:24:41 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-04-06 17:24:41 (GMT)
commit29177ac24ce70208a6225669a1275f67ac0f647a (patch)
tree3dccae52fb1fb6735dd1aa7a9e8d8c65a5c24e6d /src/sugar/tutorius/tests/run-tests.py
parentbbc61e78c1f47537f9a7118073ca89f06ad53ea9 (diff)
parent86baeb8e6b7e538e823574773c41536e38ea9d42 (diff)
Merge branch 'master' of ssh://mike@bobthebuilder.mine.nu:8080/home/git
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index e1dfc00..1cda76e 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -37,6 +37,8 @@ if __name__=='__main__':
import linear_creatortests
import actiontests
import filterstests
+ import constraintstests
+ import propertiestests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
@@ -46,6 +48,9 @@ if __name__=='__main__':
suite.addTests(unittest.findTestCases(linear_creatortests))
suite.addTests(unittest.findTestCases(actiontests))
suite.addTests(unittest.findTestCases(filterstests))
+ suite.addTests(unittest.findTestCases(constraintstests))
+ suite.addTests(unittest.findTestCases(propertiestests))
+
runner = unittest.TextTestRunner()
runner.run(suite)