File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
tests/integration/targets
podman_container_info/tasks
podman_network_info/tasks Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 8585 assert :
8686 that :
8787 - " 'containers' in existing_container"
88- - existing_container.containers
88+ - existing_container.containers | length > 0
8989 # - "existing_container.containers == podman_inspect_result"
9090 # - all_containers.containers == existing_container.containers
9191 - " 'containers' in mixed_existing_container"
92- - mixed_existing_container.containers
92+ - mixed_existing_container.containers | length > 0
9393 # - existing_container.containers == mixed_existing_container.containers
9494
9595 always :
Original file line number Diff line number Diff line change 3737 assert :
3838 that :
3939 - " 'login' in non_existing_registry"
40- - non_existing_registry.login
40+ - non_existing_registry.login is not none
41+ - non_existing_registry.login != {}
42+ - non_existing_registry.login | length > 0
4143 - " 'registry' in non_existing_registry.login"
4244 - " 'username' in non_existing_registry.login"
4345 - " 'logged_in' in non_existing_registry.login"
5759 assert :
5860 that :
5961 - " 'login' in non_existing_authfile"
60- - non_existing_authfile.login
62+ - non_existing_authfile.login is not none
63+ - non_existing_authfile.login != {}
64+ - non_existing_authfile.login | length > 0
6165 - " 'username' in non_existing_authfile.login"
6266 - " 'logged_in' in non_existing_authfile.login"
6367 - " non_existing_authfile.login.username == ''"
Original file line number Diff line number Diff line change 5353 assert :
5454 that :
5555 - " 'networks' in existing_network"
56- - existing_network.networks
56+ - existing_network.networks | length > 0
5757 - " existing_network.networks == podman_inspect_result"
5858 always :
5959
Original file line number Diff line number Diff line change 6060 assert :
6161 that :
6262 - " 'volumes' in existing_volume"
63- - existing_volume.volumes
63+ - existing_volume.volumes | length > 0
6464 - " existing_volume.volumes == podman_inspect_result"
6565 always :
6666
You can’t perform that action at this time.
0 commit comments