(self)
| 104 | return Application([("/", HelloWorldRequestHandler, dict(protocol="https"))]) |
| 105 | |
| 106 | def get_ssl_options(self): |
| 107 | return dict( |
| 108 | ssl_version=ssl.PROTOCOL_TLS_SERVER, |
| 109 | **AsyncHTTPSTestCase.default_ssl_options(), |
| 110 | ) |
| 111 | |
| 112 | def test_ssl(self): |
| 113 | response = self.fetch("/") |
nothing calls this directly
no test coverage detected