Class: Mutant::Reporter::Null

Inherits:
Mutant::Reporter show all
Defined in:
lib/mutant/reporter/null.rb

Overview

Null reporter

Instance Method Summary collapse

Instance Method Details

#progress(_object) ⇒ self

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Report progress on object

Parameters:

  • _object (Object)

Returns:

  • (self)


30
31
32
# File 'lib/mutant/reporter/null.rb', line 30

def progress(_object)
  self
end

#report(_object) ⇒ self

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Report object

Parameters:

  • _object (Object)

Returns:

  • (self)


18
19
20
# File 'lib/mutant/reporter/null.rb', line 18

def report(_object)
  self
end