()
| 21 | |
| 22 | |
| 23 | def test_split_host_port_bare_host(): |
| 24 | from recon_engine import _split_host_port |
| 25 | assert _split_host_port("example.com", 443) == ("example.com", 443) |
| 26 | |
| 27 | |
| 28 | def test_split_host_port_host_with_port(): |
nothing calls this directly
no test coverage detected