Mercurial > hg > TextShaper
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_split.py Sat May 16 19:07:38 2015 -0700 @@ -0,0 +1,21 @@ +#!/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() +