()
| 36 | |
| 37 | |
| 38 | def test_normalize_base_url_with_scheme(): |
| 39 | from recon_engine import _normalize_base_url |
| 40 | assert _normalize_base_url("https://example.com/path/") == "https://example.com" |
| 41 | |
| 42 | |
| 43 | def test_normalize_base_url_bare_host(): |
nothing calls this directly
no test coverage detected