(self)
| 594 | class test_synloop: |
| 595 | |
| 596 | def test_timeout_ignored(self): |
| 597 | x = X(self.app) |
| 598 | x.timeout_then_error(x.connection.drain_events) |
| 599 | with pytest.raises(socket.error): |
| 600 | synloop(*x.args) |
| 601 | assert x.connection.drain_events.call_count == 2 |
| 602 | |
| 603 | def test_updates_qos_when_changed(self): |
| 604 | x = X(self.app) |
nothing calls this directly
no test coverage detected