feat(components,version): add extra components, new version
[arvados-formula.git] / test / integration / shell / controls / services_spec.rb
1 # frozen_string_literal: true
2
3 control 'arvados shellinabox service' do
4   impact 0.5
5   title 'should be running and enabled'
6
7   describe service('shellinabox') do
8     it { should be_enabled }
9     it { should be_running }
10   end
11
12   describe port(4200) do
13     it { should be_listening }
14     its('processes') { should include 'shellinaboxd' }
15   end
16 end