22 lines
411 B
Ruby
22 lines
411 B
Ruby
module Mutant
|
|
class Strategy
|
|
class Rspec
|
|
# DM2-style strategy
|
|
class DM2 < self
|
|
|
|
# Return filename pattern
|
|
#
|
|
# @param [Subject] subject
|
|
#
|
|
# @return [Enumerable<String>]
|
|
#
|
|
# @api private
|
|
#
|
|
def self.spec_files(subject)
|
|
Lookup.run(subject)
|
|
end
|
|
|
|
end # DM2
|
|
end # Rspec
|
|
end # Strategy
|
|
end # Mutant
|