2012-12-07 10:55:53 -05:00
|
|
|
module Mutant
|
|
|
|
class Strategy
|
2013-07-17 13:45:47 -04:00
|
|
|
# Rspec killer strategy
|
2012-12-07 10:55:53 -05:00
|
|
|
class Rspec < self
|
2013-07-17 13:59:44 -04:00
|
|
|
include Equalizer.new
|
2012-12-07 10:55:53 -05:00
|
|
|
|
|
|
|
KILLER = Killer::Forking.new(Killer::Rspec)
|
|
|
|
|
2013-01-18 15:38:46 -05:00
|
|
|
# Setup rspec strategy
|
|
|
|
#
|
|
|
|
# @return [self]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-07-17 13:59:44 -04:00
|
|
|
def setup
|
2013-01-18 15:38:46 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2013-06-14 14:54:02 -04:00
|
|
|
end # Rspec
|
|
|
|
end # Strategy
|
|
|
|
end # Mutant
|