feat(components,version): add extra components, new version
[arvados-formula.git] / test / integration / controller / controls / services_spec.rb
1 # frozen_string_literal: true
2
3 control 'arvados controller service' do
4   impact 0.5
5   title 'should be running and enabled'
6
7   describe service('arvados-controller') do
8     it { should be_enabled }
9     it { should be_running }
10   end
11   describe port(8003) do
12     it { should be_listening }
13     # The undelying tools inspec uses to get the process truncates their names
14     its('processes') { should include 'arvados-control' }
15   end
16 end