1
0
Fork 0
mirror of synced 2024-05-26 03:51:11 -04:00
formula-sudoers/test/integration/appended/controls/package.rb
2021-08-19 01:24:17 +01:00

10 lines
159 B
Ruby

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