diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2010-10-09 18:34:00 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2010-10-09 18:34:00 +0200 |
| commit | b78c746dc02a043da6125d31bcedc39afc876ddd (patch) | |
| tree | ecb778651129b65eb9009b8d1ff1d6b7b16650fd /dbutils_test.py | |
| parent | afcf76adfacf6ffbbdc92e9ec94db111d6e6b54f (diff) | |
refactored tests and suite
Diffstat (limited to 'dbutils_test.py')
| -rw-r--r-- | dbutils_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dbutils_test.py b/dbutils_test.py index 233e536..3289264 100644 --- a/dbutils_test.py +++ b/dbutils_test.py @@ -9,4 +9,5 @@ class DBUtilsTest(unittest.TestCase): self.assertTrue(len(tables) >= 1) if __name__ == '__main__': - unittest.main() + suite = unittest.TestLoader().loadTestsFromTestCase(DBUtilsTest) + unittest.TextTestRunner(verbosity=2).run(suite) |
