aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/thread/backtrace/location/to_s_spec.rb
blob: 486d7da4c9a0681e54c8435af7e64070f7429fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

describe 'Thread::Backtrace::Location#to_s' do
  before :each do
    @frame = ThreadBacktraceLocationSpecs.locations[0]
    @line  = __LINE__ - 1
  end

  it 'converts the call frame to a String' do
    @frame.to_s.should include("#{__FILE__}:#{@line}:in ")
  end
end