aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/tracepoint/binding_spec.rb
blob: f37753602ef94dd2fda5a2d905c02c45188eace6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative '../../spec_helper'

describe 'TracePoint#binding' do
  def test
    secret = 42
  end

  it 'return the generated binding object from event' do
    bindings = []
    TracePoint.new(:return) { |tp|
      bindings << tp.binding
    }.enable {
      test
    }
    bindings.size.should == 1
    bindings[0].should be_kind_of(Binding)
    bindings[0].local_variables.should == [:secret]
  end
end