view tests/test_sigmoid.py @ 34:018c70393353

[tox] use 3.5 too
author Jeff Hammel <k0scist@gmail.com>
date Mon, 04 Sep 2017 13:53:35 -0700
parents d6d2ecb33c95
children 38aa9098bf2d
line wrap: on
line source

#!/usr/bin/env python

"""
test sigmoid related functionality
"""

import os
import unittest
from tvii.sigmoid import sigmoid


class TestSigmoid(unittest.TestCase):

    def test_basic(self):
        """test two points of the sigmoid function"""

        answer = sigmoid([0,2])
        assert len(answer) == 2
        assert answer[0] == 0.5
        assert abs(answer[1] - 0.88079708) < 1e-6

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