summaryrefslogtreecommitdiff
path: root/spec/ruby/core/tracepoint/binding_spec.rb
blob: 6d327fb6937f579bff997e84ab58b4068b44c01f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require File.expand_path('../../../spec_helper', __FILE__)

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