inspec/test/fixtures/profiles/skippy-controls/controls/skipper.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08:00

11 lines
219 B
Ruby

control 'CONTROL super' do
describe 'skippy' do
skip 'This will be skipped super intentionally.'
end
end
control 'CONTROL database' do
describe mysql_session do
its('something') { should be 3 }
end
end