2012-12-07 16:55:53 +01:00
|
|
|
module Mutant
|
|
|
|
class Strategy
|
2013-07-17 19:45:47 +02:00
|
|
|
# Rspec killer strategy
|
2012-12-07 16:55:53 +01:00
|
|
|
class Rspec < self
|
|
|
|
|
|
|
|
KILLER = Killer::Forking.new(Killer::Rspec)
|
|
|
|
|
2013-01-18 21:38:46 +01:00
|
|
|
# Setup rspec strategy
|
|
|
|
#
|
|
|
|
# @return [self]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-06-15 16:32:40 +02:00
|
|
|
def self.setup
|
2013-01-18 21:38:46 +01:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2013-06-14 20:54:02 +02:00
|
|
|
end # Rspec
|
|
|
|
end # Strategy
|
|
|
|
end # Mutant
|