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