2016-09-20 10:23:34 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load helpers
|
|
|
|
|
|
|
|
function teardown() {
|
2016-09-21 09:03:57 +00:00
|
|
|
cleanup_test
|
2016-09-20 10:23:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@test "ocic runtimeversion" {
|
|
|
|
start_ocid
|
|
|
|
ocic runtimeversion
|
2016-10-02 08:13:00 +00:00
|
|
|
echo "$output"
|
2016-09-20 10:23:34 +00:00
|
|
|
[ "$status" -eq 0 ]
|
2016-09-27 08:54:16 +00:00
|
|
|
stop_ocid
|
2016-09-20 10:23:34 +00:00
|
|
|
}
|