(
self,
family: AddressFamily,
type: SocketKind,
proto: int,
)
| 1131 | async def test_custom_socket_factory() -> None: |
| 1132 | class CustomSocketFactory: |
| 1133 | def socket( |
| 1134 | self, |
| 1135 | family: AddressFamily, |
| 1136 | type: SocketKind, |
| 1137 | proto: int, |
| 1138 | ) -> tuple[str, AddressFamily, SocketKind, int]: |
| 1139 | return ("hi", family, type, proto) |
| 1140 | |
| 1141 | csf = CustomSocketFactory() |
| 1142 |
no outgoing calls
no test coverage detected