blob: 49be6f8116def4bccfb818eaac27960c96ee7fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require File.expand_path('../../../spec_helper', __FILE__)
describe 'TracePoint#lineno' do
it 'returns the line number of the event' do
lineno = nil
TracePoint.new(:line) { |tp| lineno = tp.lineno }.enable do
lineno.should == 7
end
end
end
|