Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-10-05 15:42:28 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-10-05 15:42:28 (GMT)
commite1ed58a1a9b8674559824c158b4ed7375a0f7c18 (patch)
treed8cf73dcbc4db3ee45da14e2e2f0368cb9923922 /tests
parentb658de9cf3cb526f8492a54dab19e8238c9edb9b (diff)
LP 439980 : Adding tests for the addon module
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index d41aa0a..793db3a 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -40,6 +40,7 @@ if __name__=='__main__':
import constraintstests
import propertiestests
import serializertests
+ import addontests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
@@ -70,5 +71,5 @@ if __name__=='__main__':
from propertiestests import *
from actiontests import *
from serializertests import *
-
+ from addontests import *
unittest.main()