Mercurial > hg > tvii
annotate tests/test_sigmoid.py @ 18:e92fc4a17336
add failing test
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 19:40:29 -0700 |
parents | |
children | cd43ce453358 |
rev | line source |
---|---|
18 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
4 test sigmoid related funcationality | |
5 """ | |
6 | |
7 import os | |
8 import unittest | |
9 from tvii.sigmoid import sigmoid | |
10 | |
11 | |
12 class TestSigmoid(unittest.TestCase): | |
13 | |
14 def test_basic(self): | |
15 """test two points of the sigmoid function""" | |
16 | |
17 answer = sigmoid([0,2]) | |
18 assert len(answer(2)) | |
19 | |
20 | |
21 if __name__ == '__main__': | |
22 unittest.main() |