diff options
Diffstat (limited to 'test/alltests.py')
-rw-r--r-- | test/alltests.py | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/test/alltests.py b/test/alltests.py deleted file mode 100644 index ff758e8..0000000 --- a/test/alltests.py +++ /dev/null @@ -1,31 +0,0 @@ -import unittest - -def suite(): - modules_to_test = ( - 'lru', - 'ast', - 'pygen', - 'lexer', - 'template', - 'lookup', - 'def', - 'decorators', - 'namespace', - 'filters', - 'inheritance', - 'call', - 'cache', - 'exceptions_', - 'babelplugin', - 'tgplugin' - ) - alltests = unittest.TestSuite() - for name in modules_to_test: - mod = __import__(name) - for token in name.split('.')[1:]: - mod = getattr(mod, token) - alltests.addTest(unittest.findTestCases(mod, suiteClass=None)) - return alltests - -if __name__ == '__main__': - unittest.main(defaultTest='suite') |