nginx-formula/test/integration/default/controls/service.rb
Javier Bértoli 7271c9d16c fix(passenger): various fixes
* correctly set dependencies in configuration
* update RPM repo key
* add tests for passenger installation as nginx module
* update test matrix
2021-03-11 13:35:24 -03:00

12 lines
229 B
Ruby

# frozen_string_literal: true
control 'Nginx service' do
title 'should be running and enabled'
describe service('nginx') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end