Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-10-12 06:54:12 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-10-12 06:54:12 (GMT)
commit74dcbcb643cfd66df071020320ba6c0004e92c17 (patch)
treefa5cddc37bb337f90514601cf63a79c51610ad72 /tests/run-tests.py
parente113f3ca55178e248f620948936d8c86d22e26c2 (diff)
LP 448319 : Refactoring to translate function, adding tests for translation of resourceslp448319
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 23d7e24..9b4fa25 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -41,6 +41,7 @@ if __name__=='__main__':
import propertiestests
import serializertests
import probetests
+ import translatortests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
@@ -54,6 +55,7 @@ if __name__=='__main__':
suite.addTests(unittest.findTestCases(propertiestests))
suite.addTests(unittest.findTestCases(serializertests))
suite.addTests(unittest.findTestCases(probetests))
+ suite.addTests(unittest.findTestCases(translatortests))
runner = unittest.TextTestRunner()
runner.run(suite)
coverage.stop()
@@ -73,5 +75,6 @@ if __name__=='__main__':
from actiontests import *
from serializertests import *
from probetests import *
+ from translatortests import *
unittest.main()