view tests/unit.py @ 58:c4f551305a23 default tip

note http://marvl.infotech.monash.edu/webcola/
author Jeff Hammel <k0scist@gmail.com>
date Sun, 02 Aug 2015 08:14:20 -0700
parents cfcfa093e4b4
children
line wrap: on
line source

#!/usr/bin/env python

"""
unit tests
"""

import os
import sys
import unittest

# globals
here = os.path.dirname(os.path.abspath(__file__))

class wsgraphUnitTest(unittest.TestCase):

    def test_wsgraph(self):
        pass

if __name__ == '__main__':
    unittest.main()