diff tests/test_logistic_regression.py @ 11:b6a146f0a61b

[logistic regression] stubbing
author Jeff Hammel <k0scist@gmail.com>
date Sun, 03 Sep 2017 11:27:47 -0700
parents
children 3713c6733990
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_logistic_regression.py	Sun Sep 03 11:27:47 2017 -0700
@@ -0,0 +1,16 @@
+#!/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()