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

15 lines
No EOL
299 B
Ruby

control 'control-01' do
# A normal, if dull, example group
describe 'describe-01' do
it { should include '01' }
end
# Try to use a control_dsl extension
favorite_fruit 'Banana'
# A normal, if dull, example group
describe 'describe-02' do
it { should include '02' }
end
end