add tests skeleton

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-09-20 12:23:34 +02:00
parent 4959e12543
commit 5fb0252fd2
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9
6 changed files with 195 additions and 3 deletions

13
test/runtimeversion.bats Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bats
load helpers
function teardown() {
stop_ocid
}
@test "ocic runtimeversion" {
start_ocid
ocic runtimeversion
[ "$status" -eq 0 ]
}