view tests/test_split.py @ 50:1284c99a94fa

stubbing
author Jeff Hammel <k0scist@gmail.com>
date Sat, 16 May 2015 21:02:07 -0700
parents 643c8e92e71e
children c3b69728f291
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"""

                # 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])


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