view tests/test_split.py @ 48:03ce88daa98d

start test
author Jeff Hammel <k0scist@gmail.com>
date Sat, 16 May 2015 19:07:38 -0700
parents
children 643c8e92e71e
line wrap: on
line source

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
unit tests for `textshaper.split`
"""

# imports
import unittest
from textshaper import split


class SplitUnitTest(unittest.TestCase):

    def test_findall(self):
        """test basic"""


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