free_mutant/lib/mutant/strategy/rspec/dm2.rb
Markus Schirp 5b3d506523 Reconnect API changes for successful spec run
Sorry this looks like spiking around and yeah it was some kind of.
2013-01-22 00:00:30 +01:00

22 lines
372 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 spec_files(subject)
Lookup.run(subject)
end
end
end
end
end