(self)
| 1599 | |
| 1600 | class TestMatchAbbrev(BaseTest): |
| 1601 | def test_match_abbrev(self): |
| 1602 | self.assertEqual(_match_abbrev("--f", |
| 1603 | {"--foz": None, |
| 1604 | "--foo": None, |
| 1605 | "--fie": None, |
| 1606 | "--f": None}), |
| 1607 | "--f") |
| 1608 | |
| 1609 | def test_match_abbrev_error(self): |
| 1610 | s = "--f" |
nothing calls this directly
no test coverage detected