comparison tests/test_supervisoradmin.py @ 0:e58db0f06ed8

initial commit (stub)
author Jeff Hammel <k0scist@gmail.com>
date Tue, 27 Jan 2015 14:01:52 -0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e58db0f06ed8
1 #!/usr/bin/env python
2
3 """
4 unit tests
5 """
6
7 import os
8 import sys
9 import tempfile
10 import unittest
11
12 # globals
13 here = os.path.dirname(os.path.abspath(__file__))
14
15 class supervisoradminUnitTest(unittest.TestCase):
16
17 def test_supervisoradmin(self):
18 tf = tempfile.mktemp()
19 try:
20 # pass
21 pass
22 finally:
23 if os.path.exists(tf):
24 os.remove(tf)
25
26 if __name__ == '__main__':
27 unittest.main()
28