mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
433 B
Ruby
20 lines
433 B
Ruby
![]() |
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
|