(self, response_text)
| 2379 | self.conn.close() |
| 2380 | |
| 2381 | def _create_connection(self, response_text): |
| 2382 | def create_connection(address, timeout=None, source_address=None): |
| 2383 | return FakeSocket(response_text, host=address[0], port=address[1]) |
| 2384 | return create_connection |
| 2385 | |
| 2386 | def test_set_tunnel_host_port_headers_add_host_missing(self): |
| 2387 | tunnel_host = 'destination.com' |
no test coverage detected