Mercurial > hg > numerics
view tests/test_fields.py @ 54:bbfe25d23a9f
notes to self re fitting Skinny Puppy reference
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 20 Jan 2015 15:54:06 -0800 |
parents | 5b5e3a884b71 |
children |
line wrap: on
line source
#!/usr/bin/env python """ unit tests """ import os import sys import tempfile import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class fieldsUnitTest(unittest.TestCase): def test_fields(self): tf = tempfile.mktemp() try: # pass pass finally: if os.path.exists(tf): os.remove(tf) if __name__ == '__main__': unittest.main()