free_mutant/lib/mutant/reporter.rb

20 lines
304 B
Ruby
Raw Normal View History

# encoding: utf-8
module Mutant
# Abstract base class for reporters
class Reporter
include Adamantium::Flat, AbstractType
# Report object
#
# @param [Object] object
#
# @return [self]
#
# @api private
#
abstract_method :report
2013-06-14 14:54:02 -04:00
end # Reporter
end # Mutant