mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
8 lines
135 B
Ruby
8 lines
135 B
Ruby
|
describe 'bob' do
|
||
|
it { should eq 'bob' }
|
||
|
end
|
||
|
|
||
|
describe 'sensitivepassword', :sensitive do
|
||
|
it { should eq 'sensitivepassword' }
|
||
|
end
|