Mercurial > hg > tvii
view tests/test_tvii.py @ 0:a70bd2cd508b
initial commit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 13 Aug 2017 16:00:15 -0700 |
parents | |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ unit tests for tvii """ import os import sys import tempfile import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class tviiUnitTest(unittest.TestCase): def test_tvii(self): tf = tempfile.mktemp() try: # pass pass finally: if os.path.exists(tf): os.remove(tf) if __name__ == '__main__': unittest.main()