14 lines
157 B
Text
14 lines
157 B
Text
|
#!/usr/bin/env bats
|
||
|
|
||
|
load helpers
|
||
|
|
||
|
function teardown() {
|
||
|
stop_ocid
|
||
|
}
|
||
|
|
||
|
@test "ocic runtimeversion" {
|
||
|
start_ocid
|
||
|
ocic runtimeversion
|
||
|
[ "$status" -eq 0 ]
|
||
|
}
|