Mercurial > hg > TextShaper
view tests/test_split.py @ 51:c3b69728f291
finding indices now works
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 17 May 2015 08:33:23 -0700 |
parents | 1284c99a94fa |
children |
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 finding all substrings""" # 012345678901 string = 'a cat, a bat' retval = split.findall(string, 'a') self.assertEqual(retval, [0,3,7,10]) self.assertEqual(split.findall(string, 't'), [4, 11]) def test_indices(self): """test finding ordered indices""" string = 'a cat, a bat' indices = split.indices(string, ('a', 't')) self.assertEqual(indices, [(0, 'a'), (3, 'a'), (4, 't'), (7, 'a'), (10, 'a'), (11, 't')]) if __name__ == '__main__': unittest.main()