inspec/test/fixtures/profiles/profile-with-resource-exceptions/controls/exception_resource.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

72 lines
2 KiB
Ruby

# checks[0]
describe exception_resource_test('should raise ResourceSkipped', :skip_me) do
its('value') { should eq 'does not matter' }
end
# checks[1]
describe exception_resource_test('should raise ResourceFailed', :fail_me) do
its('value') { should eq 'does not matter' }
end
# checks[2]
describe exception_resource_test('should pass') do
its('value') { should eq 'should pass' }
end
# checks[3]
describe exception_resource_test('fail inside matcher') do
its('inside_matcher') { should eq 'does not matter' }
end
# checks[4]
describe exception_resource_test('skip inside matcher') do
its('inside_matcher') { should eq 'does not matter' }
end
control 'should-work-within-control' do
# checks[5][0]
describe exception_resource_test('should skip', :skip_me) do
its('value') { should eq 'does not matter' }
end
# checks[5][1]
describe exception_resource_test('should fail', :fail_me) do
its('value') { should eq 'does not matter' }
end
end
# checks[6]
describe exception_resource_test('skip_me').matters('does not matter') do
its('matters') { should eq 'does not matter' }
end
# checks[7]
describe exception_resource_test('fail_me').matters('does not matter') do
its('matters') { should eq 'does not matter' }
end
# checks[8]
describe exception_resource_test('skip_me').matters('it really does').another_filter('example') do
its('value') { should cmp 'does not matter' }
end
# checks[9]
describe exception_resource_test('fail_me').matters('it really does').another_filter('example') do
its('value') { should cmp 'does not matter' }
end
# checks[10]
describe exception_resource_test('skip_me').matters('it really does').not_real_filter('example') do
its('value') { should cmp 'does not matter' }
end
# checks[11]
describe exception_resource_test('fail_me').matters('it really does').not_real_filter('example') do
its('value') { should cmp 'does not matter' }
end
# checks[12]
describe exception_resource_test('should_pass').matters('it really does') do
its('another_filter') { should cmp 'example' }
end