2016-09-15 07:54:15 +00:00
|
|
|
# copyright: 2015, The Authors
|
2017-06-28 11:14:19 +00:00
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
require_resource(profile: 'profile_c', resource: 'example_config', as: 'placeholder_config')
|
2016-09-15 07:54:15 +00:00
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
describe placeholder_config do
|
2016-09-15 07:54:15 +00:00
|
|
|
its('version') { should eq('1.0') }
|
|
|
|
end
|
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
control 'whichexample' do
|
|
|
|
describe placeholder_config do
|
2016-09-15 07:54:15 +00:00
|
|
|
its('version') { should eq('1.0') }
|
|
|
|
end
|
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
describe example_config do
|
2016-09-15 07:54:15 +00:00
|
|
|
its('version') { should eq('2.0') }
|
|
|
|
end
|
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
describe placeholder_config do
|
|
|
|
its('version') { should eq(placeholder_config.version) }
|
2016-09-15 07:54:15 +00:00
|
|
|
end
|
|
|
|
|
2019-10-09 07:08:28 +00:00
|
|
|
describe example_config do
|
|
|
|
its('version') { should eq(example_config.version) }
|
2016-09-15 07:54:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|