(self)
| 16 | self.assertFalse(pattern.search(u"dog", 1)) |
| 17 | |
| 18 | def test_match(self): |
| 19 | pattern = rure.compile(u"o") |
| 20 | self.assertFalse(pattern.match(u"dog")) |
| 21 | self.assertTrue(pattern.match(u"dog", 1)) |
| 22 | |
| 23 | def test_findall(self): |
| 24 | haystack = u"abc xyz" |