inspec/test/unit/mock/profiles/profile-sensitive/controls/sensitive.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
154 B
Ruby

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