Blob Blame History Raw
#!/usr/bin/env python3

import unittest
import base

if __name__ == "__main__":
    # Look for all tests. Using test_* instead of test_*.py finds modules (test_syntax and test_indenter).
    suite = unittest.TestLoader().discover('.', pattern = "test_*")
    unittest.TextTestRunner(verbosity=2).run(suite)