mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
16 lines
197 B
Bash
16 lines
197 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "crioctl runtimeversion" {
|
|
start_crio
|
|
run crioctl runtimeversion
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
stop_crio
|
|
}
|