25dfde9044
Signed-off-by: Wei Wei <weiwei.inf@gmail.com>
15 lines
185 B
Bash
15 lines
185 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "crictl runtimeversion" {
|
|
start_crio
|
|
run crictl info
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
stop_crio
|
|
}
|