changeset 49:643c8e92e71e

wip
author Jeff Hammel <k0scist@gmail.com>
date Sat, 16 May 2015 20:13:12 -0700
parents 03ce88daa98d
children 1284c99a94fa
files tests/test_split.py
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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()