Files
podman/test/runtimeversion.bats
Matthew Heon a031b83a09 Initial checkin from CRI-O repo
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
2017-11-01 11:24:59 -04:00

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
}