comparison 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
comparison
equal deleted inserted replaced
47:6c7ca72777af 48:03ce88daa98d
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 unit tests for `textshaper.split`
6 """
7
8 # imports
9 import unittest
10 from textshaper import split
11
12
13 class SplitUnitTest(unittest.TestCase):
14
15 def test_findall(self):
16 """test basic"""
17
18
19 if __name__ == '__main__':
20 unittest.main()
21