mirror of
https://github.com/inspec/inspec
synced 2024-12-19 01:23:50 +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
|