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

20 lines
No EOL
384 B
Ruby

control 'control-01' 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 do
# Try to use a test_dsl extension
favorite_legume 'edemame'
should include '02'
end
end
describe 'describe-03' do
it { should include '03' }
end
end