(self, payload)
| 44 | self.communicator = ApplicationCommunicator(app, self.scope) |
| 45 | |
| 46 | def send_input(self, payload): |
| 47 | asyncio.new_event_loop().run_until_complete( |
| 48 | self.communicator.send_input(payload) |
| 49 | ) |
| 50 | |
| 51 | def send_default_request(self): |
| 52 | self.send_input({"type": "http.request", "body": b""}) |
no outgoing calls
no test coverage detected