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-10 18:04:09 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-03-10 18:04:09 (GMT)
commitadd05c487de3aec42801d39220a8f1f969e7c38a (patch)
tree62aa13cc5d3a9226606227b965d3acae9a2c15db /src/sugar/tutorius/tests/run-tests.py
parentc2455bf46d36f3ed39c7bdc97a56514cb7b7587f (diff)
Add a test runner (no need to use it, but its fun!
Add OnceWrapper test Conflicts: source/external/source/sugar-toolkit/src/sugar/tutorius/tests/coretests.py
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
new file mode 100755
index 0000000..74efd64
--- /dev/null
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -0,0 +1,12 @@
+#!/usr/bin/python
+# This is a dumb script to run tests on the sugar-jhbuild installed files
+# The path added is the default path for the jhbuild build
+
+import os, sys
+sys.path.insert(0,
+ os.path.abspath("../../../../../../install/lib/python2.5/site-packages/")
+)
+import unittest
+from coretests import *
+
+unittest.main()