Added unit testing framework

This commit is contained in:
Sriram Padmanabhan 2014-07-07 15:06:14 -04:00
parent 81110a920a
commit e0b123faee
13 changed files with 10 additions and 0 deletions

0
tests/unit/__init__.py Normal file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

10
tests/unit/utils/base.py Normal file
View File

@ -0,0 +1,10 @@
import testtools
class UnitTestBase(testtools.TestCase):
def setUp(self):
super(UnitTestBase, self).setUp()
def tearDown(self):
super(UnitTestBase, self).tearDown()