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-20 03:54:31 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-03-20 03:54:31 (GMT)
commit899984aaef8820ab78d12869621901715e747370 (patch)
treeecd8f9c217131c58a6f095b2ac9766e1801d183e /src/sugar/tutorius/tests/run-tests.py
parent29fd92fe5d474816aa8adf8a34c3d4d584d81cc7 (diff)
Add a few gtkutils tests
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index db10c54..2af2afb 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -25,11 +25,14 @@ if __name__=='__main__':
import coretests
import servicestests
-
+ import gtkutilstests
+ import overlaytests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
+ suite.addTests(unittest.findTestCases(gtkutilstests))
+ suite.addTests(unittest.findTestCases(overlaytests))
runner = unittest.TextTestRunner()
runner.run(suite)
@@ -40,5 +43,7 @@ if __name__=='__main__':
else:
from coretests import *
from servicestests import *
+ from gtkutilstests import *
+ from overlaytests import *
unittest.main()