Sha256: e9f7c85bb0fa4aae576db432b244c21a3b81d89f6325a383a46bf39b2e45af88
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
module Lemon module Reporter # = Reporter Base Class class Abstract # Supports ANSI Codes? ANSI_SUPPORT = ( begin require 'ansi/code' true rescue LoadError false end ) def initialize(runner) @runner = runner @ansicolor = ANSI_SUPPORT end # attr :runner # def report_start(suite) end def report_concern(concern) end def report_success(testunit) end def report_failure(testunit, exception) end def report_error(testunit, exception) end def report_finish end private def successes ; runner.successes ; end def failures ; runner.failures ; end def errors ; runner.errors ; end def pendings ; runner.pendings ; end def uncovered_cases ; runner.uncovered_cases ; end def uncovered_units ; runner.uncovered_units ; end def undefined_units ; runner.undefined_units ; end #def uncovered ; runner.uncovered ; end #def undefined ; runner.undefined ; end # Is coverage information requested? def cover? ; runner.cover? ; end # def red(string) @ansicolor ? ANSI::Code.red{ string } : string end # def yellow(string) @ansicolor ? ANSI::Code.yellow{ string } : string end # def green(string) @ansicolor ? ANSI::Code.green{ string } : string end # def total successes.size + failures.size + errors.size + pendings.size end # def tally s = "#{total} tests: #{successes.size} pass, #{failures.size} fail, #{errors.size} err, #{pendings.size} pending " s += "(#{uncovered_units.size} uncovered, #{undefined_units.size} undefined)" if cover? s end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lemon-0.7.0 | lib/lemon/reporter/abstract.rb |