inspec/test/fixtures/profiles/spec_only/specfile.rb

12 lines
186 B
Ruby
Raw Normal View History

2016-06-14 12:41:45 +00:00
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