Mercurial > hg > tvii
comparison 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 |
comparison
equal
deleted
inserted
replaced
4:e257f0bb12c9 | 5:382ab19fb052 |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 """ | |
4 test dot product | |
5 """ | |
6 | |
7 import unittest | |
8 | |
9 | |
10 class TestDot(unittest.TestCase): | |
11 | |
12 def test_simple(self): | |
13 """simple dot product test""" | |
14 # TODO | |
15 | |
16 if __name__ == '__main__': | |
17 unittest.main() |