inspec/test/unit/mock/profiles/profile-sensitive/controls/sensitive-failures.rb
devoptimist 94d80f6c8f Decoupling test profiles from example profiles
Signed-off-by: devoptimist <sbrown@chef.io>
2019-03-14 00:32:13 +00:00

9 lines
145 B
Ruby

# encoding: utf-8
describe 'bob' do
it { should eq 'billy' }
end
describe 'sensitivepassword', :sensitive do
it { should eq 'secret' }
end