Sha256: e8477af34e0254eccca921241ac1f533b2c11ba928dec51b4a10224f5c23b117
Contents?: true
Size: 1.67 KB
Versions: 40
Compression:
Stored size: 1.67 KB
Contents
module Fivemat class RSpec3 include ElapsedTime # See fivemat.rb for formatter registration. attr_reader :output, :failed_notifications def initialize(output) @output = output @group_level = 0 @index_offset = 0 @failed_notifications = [] end def color unless defined?(::RSpec::Core::Formatters::ConsoleCodes) require 'rspec/core/formatters/console_codes' end ::RSpec::Core::Formatters::ConsoleCodes end def example_passed(notification) output.print color.wrap('.', :success) end def example_pending(notification) output.print color.wrap('*', :pending) end def example_failed(notification) @failed_notifications << notification output.print color.wrap('F', :failure) end def example_group_started(event) if @group_level.zero? output.print "#{event.group.description} " @start_time = Time.now end @group_level += 1 end def example_group_finished(event) @group_level -= 1 if @group_level.zero? print_elapsed_time output, @start_time output.puts failed_notifications.each_with_index do |failure, index| output.puts failure.fully_formatted(@index_offset + index + 1) end @index_offset += failed_notifications.size failed_notifications.clear end end def dump_summary(summary) output.puts summary.fully_formatted end def seed(notification) return unless notification.seed_used? output.puts notification.fully_formatted end def message(notification) output.puts notification.message end end end
Version data entries
40 entries across 40 versions & 7 rubygems