From b108cc78b645f5a448f7274375215b80459bc9d2 Mon Sep 17 00:00:00 2001 From: Vincent Vinet Date: Thu, 26 Mar 2009 16:52:08 +0000 Subject: Add a bit of tests for filters --- (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 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() -- cgit v0.9.1