Add rspec 3.8 integration test

This commit is contained in:
Markus Schirp 2018-11-19 12:49:20 +00:00
parent d8b4a56118
commit b852ac5a7a
2 changed files with 8 additions and 1 deletions

View File

@ -4,7 +4,7 @@ RSpec.describe 'rspec integration', mutant: false do
let(:base_cmd) { 'bundle exec mutant -I lib --require test_app --use rspec' }
%w[3.7].each do |version|
%w[3.7 3.8].each do |version|
context "RSpec #{version}" do
let(:gemfile) { "Gemfile.rspec#{version}" }

View File

@ -0,0 +1,7 @@
source 'https://rubygems.org'
gem 'rspec', '~> 3.8.0'
gem 'rspec-core', '~> 3.8.0'
gem 'mutant', path: '../'
gem 'mutant-rspec', path: '../'
gem 'adamantium'
eval_gemfile File.expand_path('../../Gemfile.shared', __FILE__)