]> git.openstreetmap.org Git - chef.git/blobdiff - test/integration/docker/inspec/docker_spec.rb
Switch to using inspec for testing
[chef.git] / test / integration / docker / inspec / docker_spec.rb
diff --git a/test/integration/docker/inspec/docker_spec.rb b/test/integration/docker/inspec/docker_spec.rb
new file mode 100644 (file)
index 0000000..515bd6d
--- /dev/null
@@ -0,0 +1,8 @@
+describe package("docker-ce") do
+  it { should be_installed }
+end
+
+describe service("docker") do
+  it { should be_enabled }
+  it { should be_running }
+end