feat(components): add submodules and tests
[arvados-formula.git] / test / integration / controller / controls / services_spec.rb
diff --git a/test/integration/controller/controls/services_spec.rb b/test/integration/controller/controls/services_spec.rb
new file mode 100644 (file)
index 0000000..abee521
--- /dev/null
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+control 'arvados controller service' do
+  impact 0.5
+  title 'should be running and enabled'
+
+  describe service('keep-web') do
+    it { should be_enabled }
+    it { should be_running }
+  end
+  describe port(9002) do
+    it { should be_listening }
+    its('processes') { should include 'keep-web' }
+  end
+end