2018-09-12 14:21:24 +00:00
|
|
|
# frozen_string_literal: true
|
2014-06-08 17:55:13 +00:00
|
|
|
module Mutant
|
2016-02-14 21:11:32 +00:00
|
|
|
class Isolation
|
|
|
|
include AbstractType
|
|
|
|
|
|
|
|
# Call block in isolation
|
|
|
|
#
|
|
|
|
# @return [Object]
|
|
|
|
# the blocks result
|
|
|
|
abstract_method :call
|
2016-04-10 14:33:47 -07:00
|
|
|
end # Isolation
|
|
|
|
end # Mutant
|