(self)
| 181 | |
| 182 | class SSLContextTest(BaseSSLTest, SSLTestMixin): |
| 183 | def get_ssl_options(self): |
| 184 | context = ssl_options_to_context( |
| 185 | AsyncHTTPSTestCase.get_ssl_options(self), server_side=True |
| 186 | ) |
| 187 | assert isinstance(context, ssl.SSLContext) |
| 188 | return context |
| 189 | |
| 190 | |
| 191 | class BadSSLOptionsTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected