mirror of
https://github.com/containers/skopeo.git
synced 2026-07-13 20:52:53 +00:00
12 lines
128 B
Bash
12 lines
128 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
|
|
@test "buildah version test" {
|
|
run buildah version
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
|
|
}
|