mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
11 lines
186 B
Ruby
11 lines
186 B
Ruby
describe 'working' do
|
|
it { should eq 'working' }
|
|
end
|
|
|
|
describe 'skippy' do
|
|
skip 'This will be skipped intentionally.'
|
|
end
|
|
|
|
describe 'failing' do
|
|
it { should eq 'as intended' }
|
|
end
|