test: add ipv6 example without port

This commit is contained in:
Jörg Thalheim
2023-11-28 13:31:50 +01:00
parent 5e7d7c251e
commit 7d770465d5

View File

@@ -7,6 +7,9 @@ def test_parse_ipv6() -> None:
host = parse_deployment_address("foo", "[fe80::1%eth0]:2222") host = parse_deployment_address("foo", "[fe80::1%eth0]:2222")
assert host.host == "fe80::1%eth0" assert host.host == "fe80::1%eth0"
assert host.port == 2222 assert host.port == 2222
host = parse_deployment_address("foo", "[fe80::1%eth0]")
assert host.host == "fe80::1%eth0"
assert host.port is None
def test_run(host_group: HostGroup) -> None: def test_run(host_group: HostGroup) -> None: