inspec/test/unit/mock/profiles/old-examples/profile-sensitive/controls/sensitive-failures.rb
devoptimist 2d49f39adc moved example tests into their own sub dir, and reused examples_path variable
Signed-off-by: devoptimist <sbrown@chef.io>
2019-03-18 15:15:32 +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