Class: Mutant::Strategy::Rspec::Integration

Inherits:
Mutant::Strategy::Rspec show all
Defined in:
lib/mutant/strategy/rspec.rb

Overview

Run all integration specs per mutation

Constant Summary

Constants inherited from Mutant::Strategy::Rspec

KILLER

Instance Attribute Summary

Attributes inherited from Mutant::Strategy

#config

Instance Method Summary collapse

Methods inherited from Mutant::Strategy

#error_stream, #initialize, #kill, #killer, #output_stream

Constructor Details

This class inherits a constructor from Mutant::Strategy

Instance Method Details

#spec_files(mutation) ⇒ Mutation

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return file name pattern for mutation

Returns:



46
47
48
# File 'lib/mutant/strategy/rspec.rb', line 46

def spec_files(mutation)
  Dir['spec/integration/**/*_spec.rb']
end