Remove support for rspec-3.{0,1}
This commit is contained in:
parent
d6b3932ca9
commit
c5a9ad8a2d
3 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,8 @@
|
|||
* Drop support for ruby < 2.1
|
||||
* Remove broken `--code` option
|
||||
* Remove deprecated `--score` option
|
||||
* Add support for rspec-3.3
|
||||
* End support for rspec-3.{0,1}
|
||||
|
||||
# v0.7.9 2015-05-30
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
|
|||
gem.extra_rdoc_files = %w[TODO LICENSE]
|
||||
|
||||
gem.add_runtime_dependency('mutant', "~> #{gem.version}")
|
||||
gem.add_runtime_dependency('rspec-core', '>= 3.0.0', '< 3.4.0')
|
||||
gem.add_runtime_dependency('rspec-core', '>= 3.2.0', '< 3.4.0')
|
||||
|
||||
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@ RSpec.describe 'rspec integration', mutant: false do
|
|||
|
||||
let(:base_cmd) { 'bundle exec mutant -I lib --require test_app --use rspec' }
|
||||
|
||||
%w[3.0 3.1 3.2 3.3].each do |version|
|
||||
%w[3.2 3.3].each do |version|
|
||||
context "RSpec #{version}" do
|
||||
let(:gemfile) { "Gemfile.rspec#{version}" }
|
||||
|
||||
|
|
Loading…
Reference in a new issue