From add05c487de3aec42801d39220a8f1f969e7c38a Mon Sep 17 00:00:00 2001 From: Vincent Vinet Date: Tue, 10 Mar 2009 18:04:09 +0000 Subject: 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 --- (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 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() -- cgit v0.9.1