Module: Mutant::Mutation::Runner Private
- Defined in:
- lib/mutant/mutation/runner.rb,
lib/mutant/mutation/runner/sink.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Classes: Sink
Class Method Summary collapse
-
.call(env) ⇒ Either<String, Result>
private
Run against env.
Class Method Details
.call(env) ⇒ Either<String, Result>
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.
Run against env
9 10 11 12 13 |
# File 'lib/mutant/mutation/runner.rb', line 9 def self.call(env) reporter(env).start(env) Either::Right.new(run_mutation_analysis(env)) end |