mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
11 lines
219 B
Ruby
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
|