mirror of
https://github.com/inspec/inspec
synced 2024-12-21 10:33:23 +00:00
2d49f39adc
Signed-off-by: devoptimist <sbrown@chef.io>
9 lines
145 B
Ruby
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
|