feat(components,version): add extra components, new version
[arvados-formula.git] / test / integration / shell / controls / services_spec.rb
diff --git a/test/integration/shell/controls/services_spec.rb b/test/integration/shell/controls/services_spec.rb
new file mode 100644 (file)
index 0000000..a33f268
--- /dev/null
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+control 'arvados shellinabox service' do
+  impact 0.5
+  title 'should be running and enabled'
+
+  describe service('shellinabox') do
+    it { should be_enabled }
+    it { should be_running }
+  end
+
+  describe port(4200) do
+    it { should be_listening }
+    its('processes') { should include 'shellinaboxd' }
+  end
+end