diff options
Diffstat (limited to 'test/runtimeversion.bats')
-rw-r--r-- | test/runtimeversion.bats | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/runtimeversion.bats b/test/runtimeversion.bats new file mode 100644 index 000000000..f0d2a4367 --- /dev/null +++ b/test/runtimeversion.bats @@ -0,0 +1,15 @@ +#!/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 +} |