Sha256: 2ba6f84100408aa8857ba730094fbd57d7db6f950e07f3842453f5f8a7e6a686
Contents?: true
Size: 668 Bytes
Versions: 3
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true RSpec.describe 'Mutant on ruby corpus', mutant: false do before do skip 'Corpus test is deactivated on < 2.1' if RUBY_VERSION < '2.1' skip 'Corpus test is deactivated on RBX' if RUBY_ENGINE.eql?('rbx') end MutantSpec::Corpus::Project::ALL.select(&:mutation_generation).each do |project| specify "#{project.name} does not fail on mutation generation" do project.verify_mutation_generation end end MutantSpec::Corpus::Project::ALL.select(&:mutation_coverage).each do |project| specify "#{project.name} does have expected mutation coverage" do project.verify_mutation_coverage end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.8.19 | spec/integration/mutant/corpus_spec.rb |
mutant-0.8.18 | spec/integration/mutant/corpus_spec.rb |
mutant-0.8.17 | spec/integration/mutant/corpus_spec.rb |