7293386c26
* rubocop still warns about this on ruby 1.9.3, so it was fixed so it produces less output on travis.
27 lines
417 B
Ruby
27 lines
417 B
Ruby
# encoding: utf-8
|
|
|
|
module Mutant
|
|
class Mutator
|
|
class Util
|
|
|
|
# Utility symbol mutator
|
|
class Symbol < self
|
|
|
|
handle(::Symbol)
|
|
|
|
private
|
|
|
|
# Emit mutations
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
emit_new { :"s#{Random.hex_string}" }
|
|
end
|
|
|
|
end # Symbol
|
|
end # Util
|
|
end # Mutator
|
|
end # Mutant
|