diff --git a/test/alltests.py b/test/alltests.py new file mode 100755 index 000000000..9edc13a34 --- /dev/null +++ b/test/alltests.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python +import unittest + +test_modules = ['tag', 'library'] + +def suite(): + s = unittest.TestSuite() + for mod in map(__import__, test_modules): + s.addTest(mod.suite()) + return s + +if __name__ == '__main__': + unittest.main(defaultTest='suite') \ No newline at end of file diff --git a/test/tagtest.py b/test/tag.py similarity index 100% rename from test/tagtest.py rename to test/tag.py