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