inspec/test/fixtures/profiles/dsl_plugins/controls/describe_dsl.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

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