free_mutant/lib/mutant/mutator/literal/string.rb

25 lines
422 B
Ruby
Raw Normal View History

module Mutant
class Mutator
class Literal
# Represent mutations on string literal
class String < Literal
handle(Rubinius::AST::StringLiteral)
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_nil
emit_new { new_self(Random.hex_string) }
end
end
end
end
end