Mercurial > hg > tvii
view tests/test_dot.py @ 56:5867e4a10fae
[doc] link to deeplearn.js
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Fri, 29 Sep 2017 10:00:31 -0700 |
parents | bb8b6b06ca83 |
children |
line wrap: on
line source
#!/usr/bin/env python """ test dot product """ import unittest from tvii.dot import dot class TestDot(unittest.TestCase): def test_simple(self): """simple dot product test""" a = [1, 2, 3] b = [4, 5, 6] expected = 32 if __name__ == '__main__': unittest.main()