dc083547f5
Only supports the testing of testapp... but time will come!
24 lines
439 B
Ruby
24 lines
439 B
Ruby
module Mutant
|
|
class Mutator
|
|
class Literal < self
|
|
# Represent mutations on symbol literal
|
|
class Symbol < self
|
|
|
|
handle(Rubinius::AST::SymbolLiteral)
|
|
|
|
private
|
|
|
|
# Emit mutatns
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
emit_nil
|
|
emit_new { new_self(('s'+Random.hex_string).to_sym) }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|