nginx-formula/test/integration/default/controls/install.rb

10 lines
161 B
Ruby
Raw Normal View History

# frozen_string_literal: true
control 'Nginx package' do
title 'should be installed'
describe package('nginx') do
it { should be_installed }
end
end