(self)
| 81 | self.check_match(b'foo\nbar', b'foo*') |
| 82 | |
| 83 | def test_case(self): |
| 84 | check = self.check_match |
| 85 | check('abc', 'abc') |
| 86 | check('AbC', 'abc', IGNORECASE) |
| 87 | check('abc', 'AbC', IGNORECASE) |
| 88 | check('AbC', 'AbC') |
| 89 | |
| 90 | def test_sep(self): |
| 91 | check = self.check_match |