()
| 2 | |
| 3 | |
| 4 | def test_host_only(): |
| 5 | assert parse_hostport("host") == (None, None, None, "host") |
| 6 | assert parse_hostport("1.2.3.4") == (None, None, None, "1.2.3.4") |
| 7 | assert parse_hostport("2001::1") == (None, None, None, "2001::1") |
| 8 | assert parse_hostport("[2001::1]") == (None, None, None, "2001::1") |
| 9 | |
| 10 | |
| 11 | def test_host_and_port(): |
nothing calls this directly
no test coverage detected