()
| 88 | """ |
| 89 | |
| 90 | def no_flow_hooks(): |
| 91 | assert ( |
| 92 | Playbook(udp.UDPLayer(tctx, ignore=ignore), hooks=True) |
| 93 | << OpenConnection(tctx.server) |
| 94 | >> reply(None) |
| 95 | >> DataReceived(tctx.client, b"hello!") |
| 96 | << SendData(tctx.server, b"hello!") |
| 97 | ) |
| 98 | |
| 99 | if ignore: |
| 100 | no_flow_hooks() |
no test coverage detected
searching dependent graphs…