Mercurial > hg > tvii
comparison tests/test_sigmoid.py @ 19:cd43ce453358
[numpy] of course we have to cast everything here too
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 03 Sep 2017 20:46:26 -0700 |
parents | e92fc4a17336 |
children | d6d2ecb33c95 |
comparison
equal
deleted
inserted
replaced
18:e92fc4a17336 | 19:cd43ce453358 |
---|---|
13 | 13 |
14 def test_basic(self): | 14 def test_basic(self): |
15 """test two points of the sigmoid function""" | 15 """test two points of the sigmoid function""" |
16 | 16 |
17 answer = sigmoid([0,2]) | 17 answer = sigmoid([0,2]) |
18 assert len(answer(2)) | 18 assert len(answer) == 2 |
19 | |
20 | 19 |
21 if __name__ == '__main__': | 20 if __name__ == '__main__': |
22 unittest.main() | 21 unittest.main() |