Mercurial > hg > tvii
view tests/test_dot.py @ 6:be09c8fc58b8
length assertion on vectors
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 30 Aug 2017 20:44:48 -0700 |
parents | 382ab19fb052 |
children | bb8b6b06ca83 |
line wrap: on
line source
#!/usr/bin/env python """ test dot product """ import unittest class TestDot(unittest.TestCase): def test_simple(self): """simple dot product test""" # TODO if __name__ == '__main__': unittest.main()