(self)
| 88 | check('AbC', 'AbC') |
| 89 | |
| 90 | def test_sep(self): |
| 91 | check = self.check_match |
| 92 | check('usr/bin', 'usr/bin') |
| 93 | check('usr\\bin', 'usr/bin', NORMSEP) |
| 94 | check('usr/bin', 'usr\\bin', NORMSEP) |
| 95 | check('usr\\bin', 'usr\\bin') |
| 96 | |
| 97 | def test_char_set(self): |
| 98 | check = self.check_match |