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-25 18:35:17 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-03-31 14:02:56 (GMT)
commit6d5c55191f504357760267849c2524b3d8d64711 (patch)
tree6ad5e6a1d2d4ed05148450b98787cb8d32cda76a /src/sugar/tutorius/tests/run-tests.py
parent18871f0d1b5eef4c6c3621e50a651f8760756ab6 (diff)
Split action tests into own file, and add some testing
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index 2f89c62..74b32fe 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -29,6 +29,7 @@ if __name__=='__main__':
import overlaytests
import linear_creatortests
import actiontests
+ import uamtests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
@@ -37,6 +38,7 @@ if __name__=='__main__':
suite.addTests(unittest.findTestCases(overlaytests))
suite.addTests(unittest.findTestCases(linear_creatortests))
suite.addTests(unittest.findTestCases(actiontests))
+ suite.addTests(unittest.findTestCases(uamtests))
runner = unittest.TextTestRunner()
runner.run(suite)
@@ -50,5 +52,7 @@ if __name__=='__main__':
from gtkutilstests import *
from overlaytests import *
from actiontests import *
+ from linear_creatortests import *
+ from uamtests import *
unittest.main()