mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
18 lines
No EOL
376 B
Ruby
18 lines
No EOL
376 B
Ruby
control 'control-02' do
|
|
|
|
# A normal, if dull, example group
|
|
describe 'describe-01' do
|
|
it { should include '01' }
|
|
end
|
|
|
|
# A normal, if dull, example group
|
|
describe 'describe-02' do
|
|
it { should include '02' }
|
|
# Try to use a describe_dsl extension
|
|
favorite_vegetable 'aubergine'
|
|
end
|
|
|
|
describe 'describe-03' do
|
|
it { should include '03' }
|
|
end
|
|
end |