free_mutant/lib/mutant/strategy/rspec.rb

22 lines
345 B
Ruby
Raw Normal View History

module Mutant
class Strategy
2013-07-17 13:45:47 -04:00
# Rspec killer strategy
class Rspec < self
include Equalizer.new
KILLER = Killer::Forking.new(Killer::Rspec)
# Setup rspec strategy
#
# @return [self]
#
# @api private
#
def setup
self
end
2013-06-14 14:54:02 -04:00
end # Rspec
end # Strategy
end # Mutant