free_mutant/lib/mutant/selector.rb

17 lines
308 B
Ruby
Raw Normal View History

module Mutant
# Abstract base class for test selectors
class Selector
include AbstractType, Adamantium::Flat
# Return tests for subject
#
# @param [Subject] subjecto
#
# @return [Enumerable<Test>]
#
# @api private
abstract_method :call
end # Selector
end # Mutant