inspec/test/unit/mock/profiles/spec_only/specfile.rb
2016-06-15 17:11:29 +02:00

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