(self)
| 57 | self.assertRaises(KeyError, inverse_lookup, packed, inverse, 12) |
| 58 | |
| 59 | def test_forbid_empty_dawg(self): |
| 60 | dawg = Dawg() |
| 61 | self.assertRaises(ValueError, dawg.finish) |
| 62 | |
| 63 | @given(char_name_db()) |
| 64 | @example([("abc", "a"), ("abd", "b")]) |
nothing calls this directly
no test coverage detected