free_mutant/lib/mutant/mutator/call/send_with_arguments.rb
Markus Schirp b9b95ebe94 Break up mutation spec in class specific files
* Also add mutation class registry to improve readability.
* Calling mutations are still broken.
2012-08-01 13:27:35 +02:00

25 lines
463 B
Ruby

module Mutant
class Mutator
# Mutator for Rubinius::AST::Send
class Call < Mutator
class SendWithArguments < Call
handle(Rubinius::AST::SendWithArguments)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
# FIXME: There are MANY more mutations here :P
#
def dispatch
emit_explicit_receiver
end
end
end
end
end