()
| 9 | |
| 10 | |
| 11 | def test_host_and_port(): |
| 12 | assert parse_hostport("host:22") == (None, None, 22, "host") |
| 13 | assert parse_hostport("1.2.3.4:22") == (None, None, 22, "1.2.3.4") |
| 14 | assert parse_hostport("[2001::1]:22") == (None, None, 22, "2001::1") |
| 15 | |
| 16 | |
| 17 | def test_username_and_host(): |
nothing calls this directly
no test coverage detected