May be overridden by subclasses to select SSL options. By default includes a self-signed testing certificate.
(self)
| 492 | return dict(ssl_options=self.get_ssl_options()) |
| 493 | |
| 494 | def get_ssl_options(self) -> Dict[str, Any]: |
| 495 | """May be overridden by subclasses to select SSL options. |
| 496 | |
| 497 | By default includes a self-signed testing certificate. |
| 498 | """ |
| 499 | return AsyncHTTPSTestCase.default_ssl_options() |
| 500 | |
| 501 | @staticmethod |
| 502 | def default_ssl_options() -> Dict[str, Any]: |
no test coverage detected