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:
authorVincent Vinet <vince.vinet@gmail.com>2009-03-26 16:52:08 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-03-31 14:03:00 (GMT)
commitb108cc78b645f5a448f7274375215b80459bc9d2 (patch)
treea9c5bdce04f07d887a336aebb41f0ce818141b5e /src/sugar/tutorius/tests/run-tests.py
parent2c329ce95146f2a27e154f407bb649cc2b557b66 (diff)
Add a bit of tests for filters
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index 74b32fe..8c9c5e2 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -30,7 +30,8 @@ if __name__=='__main__':
import linear_creatortests
import actiontests
import uamtests
-
+ import filterstests
+
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
@@ -39,6 +40,7 @@ if __name__=='__main__':
suite.addTests(unittest.findTestCases(linear_creatortests))
suite.addTests(unittest.findTestCases(actiontests))
suite.addTests(unittest.findTestCases(uamtests))
+ suite.addTests(unittest.findTestCases(filterstests))
runner = unittest.TextTestRunner()
runner.run(suite)
@@ -54,5 +56,6 @@ if __name__=='__main__':
from actiontests import *
from linear_creatortests import *
from uamtests import *
+ from filterstests import *
unittest.main()