free_mutant/lib/mutant/reporter/null.rb
2013-06-14 21:12:10 +02:00

21 lines
300 B
Ruby

module Mutant
class Reporter
# Null reporter
class Null < self
# Report object
#
# @param [Object] _object
#
# @return [self]
#
# @api private
#
def report(_object)
self
end
end # Null
end # Reporter
end # Mutant