free_mutant/lib/mutant/reporter/trace.rb
Markus Schirp 8335cccafb Fix YARD summary line
* Reduce redunrant 'Return' prefix on summaries
* Improve summary line to reflect the semantics of operation better
2015-07-03 15:21:39 +00:00

36 lines
784 B
Ruby

module Mutant
class Reporter
# Reporter to trace report calls, used as a spec adapter
class Trace
include Adamantium::Mutable, Anima.new(:start_calls, :progress_calls, :report_calls, :warn_calls)
# New trace reporter
#
# @return [Trace]
#
# @api private
def self.new
super(Hash[anima.attribute_names.map { |name| [name, []] }])
end
%w[start progress report warn].each do |name|
define_method(name) do |object|
public_send(:"#{name}_calls") << object
self
end
end
REPORT_DELAY = 0.0
# Report delay
#
# @return [Float]
#
# @api private
def delay
REPORT_DELAY
end
end # Tracker
end # reporter
end # Mutant