mirror of
https://github.com/containers/podman.git
synced 2025-10-11 08:15:25 +08:00
14 lines
182 B
Bash
14 lines
182 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "kpod version test" {
|
|
run bash -c "${KPOD_BINARY} version"
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
}
|