view tests/unit.py @ 7:2693d9f8ed8c

add file for dealing with whitespace
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 05 Oct 2013 09:50:34 -0700
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()