mirror of
https://github.com/inspec/inspec
synced 2025-01-11 20:59:19 +00:00
10 lines
154 B
Ruby
10 lines
154 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
describe 'bob' do
|
||
|
it { should eq 'bob' }
|
||
|
end
|
||
|
|
||
|
describe 'sensitivepassword', :sensitive do
|
||
|
it { should eq 'sensitivepassword' }
|
||
|
end
|