116
115
pattern = lazy_regex.lazy_compile('[,;]*')
117
116
self.assertEqual(['x', 'y', 'z'], pattern.split('x,y;z'))
126
self.assertEqual(['x', 'y', 'z'],
130
119
class TestInstallLazyCompile(tests.TestCase):
131
120
"""Tests for lazy compiled regexps.