# HG changeset patch # User Jeff Hammel # Date 1431832392 25200 # Node ID 643c8e92e71ecdc46631433708b1fc22fc90b5e8 # Parent 03ce88daa98d4e264306e2e471556c19209af88f wip diff -r 03ce88daa98d -r 643c8e92e71e tests/test_split.py --- a/tests/test_split.py Sat May 16 19:07:38 2015 -0700 +++ b/tests/test_split.py Sat May 16 20:13:12 2015 -0700 @@ -15,7 +15,11 @@ def test_findall(self): """test basic""" + # 012345678901 + string = 'a cat, a bat' + retval = split.findall(string, 'a') + if __name__ == '__main__': unittest.main()