mirror of
https://github.com/containers/podman.git
synced 2025-10-19 04:03:23 +08:00

Now that we only test compose v2 remove the special cases from the test code to simply the tests. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
8 lines
387 B
Bash
8 lines
387 B
Bash
# -*- bash -*-
|
|
|
|
ctr_name="ipam_set_ip-test-1"
|
|
podman container inspect "$ctr_name" --format '{{ .NetworkSettings.Networks.ipam_set_ip_net1.IPAddress }}'
|
|
is "$output" "10.123.0.253" "$testname : ip address is set"
|
|
podman container inspect "$ctr_name" --format '{{ .NetworkSettings.Networks.ipam_set_ip_net1.MacAddress }}'
|
|
is "$output" "32:b5:b2:55:48:72" "$testname : mac address is set"
|