changeset 5:382ab19fb052

[test] stub test for dot product
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Aug 2017 17:32:06 -0700
parents e257f0bb12c9
children be09c8fc58b8
files tests/test_dot.py
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
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()