feat(distro): add centos-7 support
[arvados-formula.git] / test / integration / websocket / controls / services_spec.rb
1 # frozen_string_literal: true
2
3 control 'arvados websocket service' do
4   impact 0.5
5   title 'should be running and enabled'
6
7   describe service('arvados-ws') do
8     it { should be_enabled }
9     it { should be_running }
10   end
11
12   describe port(8005) do
13     it { should be_listening }
14     its('processes') { should cmp 'arvados-ws' }
15   end
16 end