mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00

Remove the use of bash -c unless it involves a bash pipe. Also, use run test_runner.sh inside script so that centos can be happy. Signed-off-by: baude <bbaude@redhat.com> Closes: #239 Approved by: baude
14 lines
176 B
Bash
14 lines
176 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "podman version test" {
|
|
run ${PODMAN_BINARY} version
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
}
|