summaryrefslogtreecommitdiff
path: root/spec/ruby/core/tracepoint/defined_class_spec.rb
blob: 4593db6d1f4b0c77f7e64f819b9b98c7945ba572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe 'TracePoint#defined_class' do
  it 'returns class or module of the method being called' do
    last_class_name = nil
    TracePoint.new(:call) do |tp|
      next unless TracePointSpec.target_thread?
      last_class_name = tp.defined_class
    end.enable do
      TracePointSpec::B.new.foo
      last_class_name.should equal(TracePointSpec::B)

      TracePointSpec::B.new.bar
      last_class_name.should equal(TracePointSpec::A)

      c = TracePointSpec::C.new
      last_class_name.should equal(TracePointSpec::C)

      c.foo
      last_class_name.should equal(TracePointSpec::B)

      c.bar
      last_class_name.should equal(TracePointSpec::A)
    end
  end
end