26d004ccf000a6c1ecb8fc4c011a8e1baef093f5
[arvados-formula.git] / test / integration / api / controls / services_spec.rb
1 # frozen_string_literal: true
2
3 control 'arvados api service' do
4   impact 0.5
5   title 'should be running and enabled'
6
7   describe service('nginx') do
8     it { should be_enabled }
9     it { should be_running }
10   end
11
12   describe port(8004) do
13     it { should be_listening }
14     its('processes') { should include 'nginx' }
15   end
16 end