]> git.openstreetmap.org Git - chef.git/blobdiff - test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb
Switch to using inspec for testing
[chef.git] / test / integration / prometheus / serverspec / prometheus_node_exporter_spec.rb
diff --git a/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb b/test/integration/prometheus/serverspec/prometheus_node_exporter_spec.rb
deleted file mode 100644 (file)
index 7a035e8..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-require "serverspec"
-
-# Required by serverspec
-set :backend, :exec
-
-describe service("prometheus-node-exporter") do
-  it { should be_enabled }
-  it { should be_running }
-end
-
-describe port(9100) do
-  it { should be_listening.with("tcp") }
-end