mirror of
https://github.com/containers/podman.git
synced 2025-10-10 07:45:08 +08:00

The decision is in, kpod is going to be named podman. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #145 Approved by: umohnani8
14 lines
186 B
Bash
14 lines
186 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "podman version test" {
|
|
run bash -c "${PODMAN_BINARY} version"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
}
|