view tests/test_tvii.py @ 2:1214c127fe43

steps towards logistic regression
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Aug 2017 17:05:03 -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()