Mercurial > hg > numerics
diff tests/test_kplot.py @ 0:48d0f28311a3
init
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 14 Aug 2014 16:26:16 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_kplot.py Thu Aug 14 16:26:16 2014 -0700 @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +""" +unit tests +""" + +import os +import sys +import unittest + +# globals +here = os.path.dirname(os.path.abspath(__file__)) + +class kplotUnitTest(unittest.TestCase): + + def test_kplot(self): + pass + +if __name__ == '__main__': + unittest.main() +