view tests/unit.py @ 48:0485b2293988

ganv
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 30 Apr 2013 19:35:21 -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()