Mercurial > hg > tvii
diff tests/test_dot.py @ 5:382ab19fb052
[test] stub test for dot product
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 30 Aug 2017 17:32:06 -0700 |
parents | |
children | bb8b6b06ca83 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_dot.py Wed Aug 30 17:32:06 2017 -0700 @@ -0,0 +1,17 @@ +#!/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()