aebd365cf4
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
14 lines
171 B
Bash
14 lines
171 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
stop_ocid
|
|
cleanup_test
|
|
}
|
|
|
|
@test "ocic runtimeversion" {
|
|
start_ocid
|
|
ocic runtimeversion
|
|
[ "$status" -eq 0 ]
|
|
}
|