view tests/test_tvii.py @ 1:92a402736bcc

[reading material] mxnet
author Jeff Hammel <k0scist@gmail.com>
date Sun, 20 Aug 2017 11:14:59 -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()