free_mutant/lib/mutant/isolation.rb

13 lines
230 B
Ruby
Raw Normal View History

# 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