(self, method, path, ssl_ctx=None)
| 807 | |
| 808 | @asyncio.coroutine |
| 809 | def create_server(self, method, path, ssl_ctx=None): |
| 810 | app, srv, url = yield from super().create_server( |
| 811 | method, path, ssl_ctx=ssl_ctx |
| 812 | ) |
| 813 | app.router.add_static = self.patch_sendfile(app.router.add_static) |
| 814 | |
| 815 | return app, srv, url |
| 816 | |
| 817 | def test_static_file(self): |
| 818 |
no test coverage detected