unit testing: print more output for each test run

This commit is contained in:
Fabio Erculiani
2009-04-13 23:36:03 +02:00
parent 8ac1b1ea85
commit 3185cdf8d4
+3 -1
View File
@@ -1,5 +1,6 @@
#!/usr/bin/env python
import sys
import unittest
import os
from entropy.client.interfaces import Client
@@ -15,7 +16,8 @@ class LocalRepositoryTest(unittest.TestCase):
"""
tearDown is run after each test
"""
pass
sys.stdout.write("%s ran\n" % (self,))
sys.stdout.flush()
def test_db_creation(self):
dbname = 'test_suite'