Class: TestProf::RubyProf::Listener

Inherits:
Object
  • Object
show all
Defined in:
lib/test_prof/ruby_prof/rspec.rb

Overview

Reporter for RSpec to profile specific examples with RubyProf

Constant Summary collapse

NOTIFICATIONS =

:nodoc:

%i[
  example_started
  example_finished
].freeze

Instance Method Summary collapse

Instance Method Details

#example_finished(notification) ⇒ Object



18
19
20
21
22
23
# File 'lib/test_prof/ruby_prof/rspec.rb', line 18

def example_finished(notification)
  return unless profile?(notification.example)
  notification.example.[:rprof_report]&.dump(
    notification.example.full_description.parameterize
  )
end

#example_started(notification) ⇒ Object



12
13
14
15
16
# File 'lib/test_prof/ruby_prof/rspec.rb', line 12

def example_started(notification)
  return unless profile?(notification.example)
  notification.example.[:rprof_report] =
    TestProf::RubyProf.profile
end