annotate 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 | 
 | rev | line source | 
  
| 11 | 1 #!/usr/bin/env python | 
|  | 2 | 
|  | 3 """ | 
|  | 4 test logistic regression | 
|  | 5 """ | 
|  | 6 | 
|  | 7 import os | 
|  | 8 import unittest | 
|  | 9 from tvii import logistic_regression | 
|  | 10 | 
|  | 11 class LogisticRegresionTests(unittest.TestCase): | 
|  | 12     def test_basic(self): | 
|  | 13         """placeholder""" | 
|  | 14 | 
|  | 15 if __name__ == '__main__': | 
|  | 16     unittest.main() |