view tests/test_logistic_regression.py @ 21:0149be5a984c

[iterable] add function to tell True/False if argument is an iterable
author Jeff Hammel <k0scist@gmail.com>
date Mon, 04 Sep 2017 08:37:06 -0700
parents b6a146f0a61b
children 3713c6733990
line wrap: on
line source

#!/usr/bin/env python

"""
test logistic regression
"""

import os
import unittest
from tvii import logistic_regression

class LogisticRegresionTests(unittest.TestCase):
    def test_basic(self):
        """placeholder"""

if __name__ == '__main__':
    unittest.main()