cri-o/test/runtimeversion.bats
Wei Wei 25dfde9044 replace crioctl with crictl
Signed-off-by: Wei Wei <weiwei.inf@gmail.com>
2017-11-20 13:46:52 +08:00

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
}