free_mutant/lib/mutant/isolation.rb
2016-02-14 21:11:32 +00:00

11 lines
179 B
Ruby

module Mutant
class Isolation
include AbstractType
# Call block in isolation
#
# @return [Object]
# the blocks result
abstract_method :call
end
end