()
| 72 | |
| 73 | @asyncio.coroutine |
| 74 | def go(): |
| 75 | _, srv, url = yield from self.create_server('GET', '/', handler) |
| 76 | resp = yield from request('GET', url, loop=self.loop) |
| 77 | self.assertEqual(200, resp.status) |
| 78 | txt = yield from resp.text() |
| 79 | self.assertEqual('OK', txt) |
| 80 | |
| 81 | self.loop.run_until_complete(go()) |
| 82 |
nothing calls this directly
no test coverage detected