May be overridden by subclasses to select SSL options. By default includes a self-signed testing certificate.
(self)
| 552 | return dict(ssl_options=self.get_ssl_options()) |
| 553 | |
| 554 | def get_ssl_options(self) -> Dict[str, Any]: |
| 555 | """May be overridden by subclasses to select SSL options. |
| 556 | |
| 557 | By default includes a self-signed testing certificate. |
| 558 | """ |
| 559 | return AsyncHTTPSTestCase.default_ssl_options() |
| 560 | |
| 561 | @staticmethod |
| 562 | def default_ssl_options() -> Dict[str, Any]: |
no test coverage detected