()
| 11 | |
| 12 | |
| 13 | def test_split_host_port_https_url(): |
| 14 | from recon_engine import _split_host_port |
| 15 | assert _split_host_port("https://example.com/path", 443) == ("example.com", 443) |
| 16 | |
| 17 | |
| 18 | def test_split_host_port_explicit_port(): |
nothing calls this directly
no test coverage detected