(self)
| 51 | |
| 52 | # -- longid -- |
| 53 | def test_longid_simple(self): |
| 54 | m = self.longid_re.match("confess-37.10") |
| 55 | assert m and m.group(1) == "confess" and m.group(2) == "37.10" |
| 56 | |
| 57 | def test_longid_underscore(self): |
| 58 | m = self.longid_re.match("animal_sounds-38") |