Mercurial > hg > tvii
view tests/test_tvii.py @ 3:14d65b83c299
remove boilerplate
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 30 Aug 2017 17:15:00 -0700 |
parents | a70bd2cd508b |
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()