(self, data)
| 5392 | def recv_bytes(self, size): |
| 5393 | return b'something bogus' |
| 5394 | def send_bytes(self, data): |
| 5395 | pass |
| 5396 | self.assertRaises(multiprocessing.AuthenticationError, |
| 5397 | multiprocessing.connection.deliver_challenge, |
| 5398 | _FakeConnection(), b'abc') |
no outgoing calls
no test coverage detected