Class: RSpec::Core::Reporter

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec/core/reporter.rb

Instance Method Summary collapse

Constructor Details

#initialize(*formatters) ⇒ Reporter

Returns a new instance of Reporter.



3
4
5
6
7
# File 'lib/rspec/core/reporter.rb', line 3

def initialize(*formatters)
  @formatters = formatters
  @example_count = @failure_count = @pending_count = 0
  @duration = @start = nil
end

Instance Method Details

#example_failed(example) ⇒ Object



58
59
60
61
# File 'lib/rspec/core/reporter.rb', line 58

def example_failed(example)
  @failure_count += 1
  notify :example_failed, example
end

#example_group_finished(group) ⇒ Object



45
46
47
# File 'lib/rspec/core/reporter.rb', line 45

def example_group_finished(group)
  notify :example_group_finished, group unless group.descendant_filtered_examples.empty?
end

#example_group_started(group) ⇒ Object



41
42
43
# File 'lib/rspec/core/reporter.rb', line 41

def example_group_started(group)
  notify :example_group_started, group unless group.descendant_filtered_examples.empty?
end

#example_passed(example) ⇒ Object



54
55
56
# File 'lib/rspec/core/reporter.rb', line 54

def example_passed(example)
  notify :example_passed, example
end

#example_pending(example) ⇒ Object



63
64
65
66
# File 'lib/rspec/core/reporter.rb', line 63

def example_pending(example)
  @pending_count += 1
  notify :example_pending, example
end

#example_started(example) ⇒ Object



49
50
51
52
# File 'lib/rspec/core/reporter.rb', line 49

def example_started(example)
  @example_count += 1
  notify :example_started, example
end

#finishObject Also known as: abort



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/rspec/core/reporter.rb', line 18

def finish
  begin
    stop
    notify :start_dump
    notify :dump_pending
    notify :dump_failures
    notify :dump_summary, @duration, @example_count, @failure_count, @pending_count
  ensure
    notify :close
  end
end

#message(message) ⇒ Object



37
38
39
# File 'lib/rspec/core/reporter.rb', line 37

def message(message)
  notify :message, message
end

#notify(method, *args, &block) ⇒ Object



73
74
75
76
77
# File 'lib/rspec/core/reporter.rb', line 73

def notify(method, *args, &block)
  @formatters.each do |formatter|
    formatter.send method, *args, &block
  end
end

#report(count) ⇒ Object



9
10
11
12
13
14
15
16
# File 'lib/rspec/core/reporter.rb', line 9

def report(count)
  start(count)
  begin
    yield self
  ensure
    finish
  end
end

#start(expected_example_count) ⇒ Object



32
33
34
35
# File 'lib/rspec/core/reporter.rb', line 32

def start(expected_example_count)
  @start = Time.now
  notify :start, expected_example_count
end

#stopObject



68
69
70
71
# File 'lib/rspec/core/reporter.rb', line 68

def stop
  @duration = Time.now - @start if @start
  notify :stop
end