mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-31 04:37:50 +00:00
13 lines
172 B
Bash
13 lines
172 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "kpod version test" {
|
|
run ${KPOD_BINARY} version
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
}
|