11 lines
179 B
Ruby
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
|