From 6d5c55191f504357760267849c2524b3d8d64711 Mon Sep 17 00:00:00 2001 From: Vincent Vinet Date: Wed, 25 Mar 2009 18:35:17 +0000 Subject: Split action tests into own file, and add some testing --- (limited to 'src/sugar/tutorius/tests/run-tests.py') 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() -- cgit v0.9.1