2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2020-05-31 12:22:49 -04:00
|
|
|
require_relative 'fixtures/classes'
|
2017-12-01 10:41:50 -05:00
|
|
|
|
|
|
|
describe 'TracePoint#lineno' do
|
|
|
|
it 'returns the line number of the event' do
|
|
|
|
lineno = nil
|
2020-05-31 12:22:49 -04:00
|
|
|
TracePoint.new(:line) { |tp|
|
|
|
|
next unless TracePointSpec.target_thread?
|
|
|
|
lineno = tp.lineno
|
|
|
|
}.enable do
|
|
|
|
line_event = true
|
2017-12-01 10:41:50 -05:00
|
|
|
end
|
2020-05-31 12:22:49 -04:00
|
|
|
lineno.should == __LINE__ - 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises RuntimeError if accessed from outside' do
|
|
|
|
tp = TracePoint.new(:line) {}
|
|
|
|
-> { tp.lineno }.should raise_error(RuntimeError, 'access from outside')
|
2017-12-01 10:41:50 -05:00
|
|
|
end
|
|
|
|
end
|