require File.expand_path('../../../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes', __FILE__) describe 'Thread::Backtrace::Location#lineno' do before :each do @frame = ThreadBacktraceLocationSpecs.locations[0] @line = __LINE__ - 1 end it 'returns the absolute path of the call frame' do @frame.lineno.should == @line end end