Mercurial > hg > numerics
annotate tests/test_fields.py @ 87:8448c62a4917
almost to output; frange done
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 01 Mar 2015 17:47:22 -0800 |
parents | 5b5e3a884b71 |
children |
rev | line source |
---|---|
38 | 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 fieldsUnitTest(unittest.TestCase): | |
16 | |
17 def test_fields(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 |