0
0
mirror of https://github.com/saltstack-formulas/sudoers-formula.git synced 2025-02-22 03:33:11 +01:00

10 lines
159 B
Ruby
Raw Normal View History

2021-08-19 00:52:57 +01:00
# frozen_string_literal: true
control 'Sudo package' do
title 'should be installed'
describe package('sudo') do
it { should be_installed }
end
end