free_mutant/lib/mutant/selector/expression.rb
Markus Schirp 8335cccafb Fix YARD summary line
* Reduce redunrant 'Return' prefix on summaries
* Improve summary line to reflect the semantics of operation better
2015-07-03 15:21:39 +00:00

27 lines
642 B
Ruby

module Mutant
class Selector
# Expression based test selector
class Expression < self
include Concord.new(:integration)
# Tests for subject
#
# @param [Subject] subject
#
# @return [Enumerable<Test>]
#
# @api private
def call(subject)
subject.match_expressions.each do |match_expression|
subject_tests = integration.all_tests.select do |test|
match_expression.prefix?(test.expression)
end
return subject_tests if subject_tests.any?
end
EMPTY_ARRAY
end
end # Expression
end # Selector
end # Mutant