summaryrefslogtreecommitdiff
path: root/test/runtimeversion.bats
blob: f0d2a4367f4eacdf9c387af82da829cb16bf5d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}