类: RSpec::Core::Notifications::ExampleNotification

继承
Struct
  • Object
显示全部
定义于
lib/rspec/core/notifications.rb,
lib/rspec/core/notifications.rb

概述

ExampleNotification 表示由报告器发送的通知,其中包含有关当前(或即将)示例的信息。格式化程序使用它来访问有关该示例的信息。

示例

def example_started(notification)
  puts "Hey I started #{notification.example.description}"
end

实例属性摘要 折叠

实例属性详细信息

#exampleRSpec::Core::Example

当前示例

返回值

38
39
40
# File 'lib/rspec/core/notifications.rb', line 38
def example
  @example
end