view tests/unit.py @ 15:497b29bba41b

STUB: setup.py
author Jeff Hammel <k0scist@gmail.com>
date Fri, 14 Feb 2014 14:07:38 -0800
parents 53cfd6e1ad0f
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 textshaperUnitTest(unittest.TestCase):

    def test_textshaper(self):
        pass

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