7293386c26
* rubocop still warns about this on ruby 1.9.3, so it was fixed so it produces less output on travis.
23 lines
319 B
Ruby
23 lines
319 B
Ruby
# encoding: utf-8
|
|
|
|
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
|