(self)
| 631 | self.assertIs(self.hasher.must_update("encoded"), False) |
| 632 | |
| 633 | def test_safe_summary(self): |
| 634 | msg = self.not_implemented_msg % "a safe_summary" |
| 635 | with self.assertRaisesMessage(NotImplementedError, msg): |
| 636 | self.hasher.safe_summary("encoded") |
| 637 | |
| 638 | def test_verify(self): |
| 639 | msg = self.not_implemented_msg % "a verify" |
nothing calls this directly
no test coverage detected