| 344 | |
| 345 | |
| 346 | class TestPGPKeyring(object): |
| 347 | kr = PGPKeyring(_read('tests/testdata/pubtest.asc')) |
| 348 | |
| 349 | def test_key_keyerror(self): |
| 350 | with pytest.raises(KeyError): |
| 351 | with self.kr.key('DEADBEA7CAFED00D'): |
| 352 | pass |
| 353 | |
| 354 | |
| 355 | class TestPGPMessage(object): |
nothing calls this directly
no test coverage detected
searching dependent graphs…