inspec/test/fixtures/profiles/spec_only/specfile.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08: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