()
| 46 | |
| 47 | |
| 48 | def _server_ssl_options(): |
| 49 | return dict( |
| 50 | certfile=os.path.join(os.path.dirname(__file__), "test.crt"), |
| 51 | keyfile=os.path.join(os.path.dirname(__file__), "test.key"), |
| 52 | ) |
| 53 | |
| 54 | |
| 55 | class HelloHandler(RequestHandler): |
no test coverage detected