Add rspec 3.8 integration test
This commit is contained in:
parent
d8b4a56118
commit
b852ac5a7a
2 changed files with 8 additions and 1 deletions
|
@ -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}" }
|
||||
|
||||
|
|
7
test_app/Gemfile.rspec3.8
Normal file
7
test_app/Gemfile.rspec3.8
Normal 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__)
|
Loading…
Reference in a new issue