free_mutant/spec/integration/mutant/rspec_spec.rb

23 lines
492 B
Ruby
Raw Normal View History

RSpec.describe 'rspec integration', mutant: false do
2014-03-08 13:01:17 -05:00
let(:base_cmd) { 'bundle exec mutant -I lib --require test_app --use rspec' }
2014-03-03 13:00:57 -05:00
context 'RSpec 3.0' do
let(:gemfile) { 'Gemfile.rspec3.0' }
it_behaves_like 'framework integration'
end
context 'RSpec 3.1' do
let(:gemfile) { 'Gemfile.rspec3.1' }
2014-03-03 13:00:57 -05:00
it_behaves_like 'framework integration'
2012-11-24 11:39:27 -05:00
end
context 'RSpec 3.2' do
let(:gemfile) { 'Gemfile.rspec3.2' }
it_behaves_like 'framework integration'
end
end