free_mutant/lib/mutant/mutator/node/block.rb
Markus Schirp 93556763dd Bring back yard coverage to 100%
Also do some minor refactorings
2012-12-12 22:31:27 +01:00

31 lines
576 B
Ruby

module Mutant
class Mutator
class Node
# Mutator on AST blocks
class Block < self
handle(Rubinius::AST::Block)
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
array = input.array
emit_attribute_mutations(:array) do |mutation|
array = mutation.array
# Do not generate empty bodies
if array.empty?
array << new_nil
end
end
end
end
end
end
end