()
| 15 | |
| 16 | |
| 17 | def test_username_and_host(): |
| 18 | assert parse_hostport("user@host") == ("user", None, None, "host") |
| 19 | assert parse_hostport("user:@host") == ("user", None, None, "host") |
| 20 | assert parse_hostport("user:pass@host") == ("user", "pass", None, "host") |
nothing calls this directly
no test coverage detected