Class: RSpec::Core::Notifications::GroupNotification

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

Overview

The GroupNotification represents notifications sent by the reporter which contain information about the currently running (or soon to be) example group. It is used by formatters to access information about that group.

Examples:

def example_group_started(notification)
  puts "Hey I started #{notification.group.description}"
end

Instance Attribute Summary (collapse)

Instance Attribute Details

- (RSpec::Core::ExampleGroup) group

the current group

Returns:

251
252
253
# File 'lib/rspec/core/notifications.rb', line 251
def group
  @group
end