]> git.phdru.name Git - sqlconvert.git/blob - tests/__init__.py
Initial commit - created the project
[sqlconvert.git] / tests / __init__.py
1
2 import unittest
3
4 __all__ = ['TestCase', 'main']
5
6
7 class TestCase(unittest.TestCase):
8     def setUp(self):
9         pass
10
11     def tearDown(self):
12         pass
13
14
15 def main():
16     try:
17         unittest.main(testRunner=unittest.TextTestRunner())
18     except SystemExit, msg:
19         result = msg.args[0]
20     else:
21         result = 0
22     raise SystemExit(result)