7271c9d16c
* correctly set dependencies in configuration * update RPM repo key * add tests for passenger installation as nginx module * update test matrix
10 lines
161 B
Ruby
10 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
control 'Nginx package' do
|
|
title 'should be installed'
|
|
|
|
describe package('nginx') do
|
|
it { should be_installed }
|
|
end
|
|
end
|