Class: RSpec::Core::Formatters::Protocol

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

Overview

This class isn't loaded at runtime but serves to document all of the notifications implemented as part of the standard interface. The reporter will issue these during a normal test suite run, but a formatter will only receive those notifications it has registered itself to receive. To register a formatter call:

::RSpec::Core::Formatters.register class, :list, :of, :notifications

e.g.

::RSpec::Core::Formatters.register self, :start, :example_started

Suite Notifications collapse

Group Notifications collapse

Example Notifications collapse

Instance Method Summary collapse

Constructor Details

#initializevoid

Parameters:

  • output (IO)

    the formatter output



# File 'lib/rspec/core/formatters/protocol.rb', line 20

Instance Method Details

#closevoid

Invoked at the very end, close allows the formatter to clean up resources, e.g. open streams, etc.

Parameters:

  • notification (NullNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 170

#dump_failuresvoid

Dumps detailed information about each example failure.

Parameters:

  • notification (NullNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 133

#dump_pendingvoid

Outputs a report of pending examples. This gets invoked after the summary if option is set to do so.

Parameters:

  • notification (NullNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 161

#dump_profilevoid

This method is invoked after the dumping the summary if profiling is enabled.

Parameters:

  • profile (ProfileNotification)

    containing duration, slowest_examples and slowest_example_groups



# File 'lib/rspec/core/formatters/protocol.rb', line 151

#dump_summaryvoid

This method is invoked after the dumping of examples and failures. Each parameter is assigned to a corresponding attribute.

Parameters:

  • summary (SummaryNotification)

    containing duration, example_count, failure_count and pending_count



# File 'lib/rspec/core/formatters/protocol.rb', line 141

#example_failedvoid

Invoked when an example fails.

Parameters:

  • notification (ExampleNotification)

    containing example subclass of RSpec::Core::Example



# File 'lib/rspec/core/formatters/protocol.rb', line 96

#example_finishedvoid

Invoked at the end of the execution of each example.

Parameters:

  • notification (ExampleNotification)

    containing example subclass of RSpec::Core::Example



# File 'lib/rspec/core/formatters/protocol.rb', line 69

#example_group_finishedvoid

Invoked at the end of the execution of each example group.

Parameters:

  • notification (GroupNotification)

    containing example_group subclass of RSpec::Core::ExampleGroup



# File 'lib/rspec/core/formatters/protocol.rb', line 51

#example_group_startedvoid

This method is invoked at the beginning of the execution of each example group.

The next method to be invoked after this is #example_passed, #example_pending, or #example_group_finished.

Parameters:

  • notification (GroupNotification)

    containing example_group subclass of RSpec::Core::ExampleGroup



# File 'lib/rspec/core/formatters/protocol.rb', line 38

#example_passedvoid

Invoked when an example passes.

Parameters:

  • notification (ExampleNotification)

    containing example subclass of RSpec::Core::Example



# File 'lib/rspec/core/formatters/protocol.rb', line 78

#example_pendingvoid

Invoked when an example is pending.

Parameters:

  • notification (ExampleNotification)

    containing example subclass of RSpec::Core::Example



# File 'lib/rspec/core/formatters/protocol.rb', line 87

#example_startedvoid

Invoked at the beginning of the execution of each example.

Parameters:

  • notification (ExampleNotification)

    containing example subclass of RSpec::Core::Example



# File 'lib/rspec/core/formatters/protocol.rb', line 60

#messagevoid

Used by the reporter to send messages to the output stream.

Parameters:

  • notification (MessageNotification)

    containing message



# File 'lib/rspec/core/formatters/protocol.rb', line 105

#startvoid

This method is invoked before any examples are run, right after they have all been collected. This can be useful for special formatters that need to provide progress on feedback (graphical ones).

This will only be invoked once, and the next one to be invoked is #example_group_started.

Parameters:

  • notification (StartNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 25

#start_dumpvoid

This method is invoked after all of the examples have executed. The next method to be invoked after this one is #dump_failures (BaseTextFormatter then calls #dump_failures once for each failed example).

Parameters:

  • notification (NullNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 122

#stopvoid

Invoked after all examples have executed, before dumping post-run reports.

Parameters:

  • notification (NullNotification)


# File 'lib/rspec/core/formatters/protocol.rb', line 113