view 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 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()