summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/backtrace/location/inspect_spec.rb
blob: 20e477a5a629cd65b5e5de0c1685240fac8ffb00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../../../spec_helper'
require_relative 'fixtures/classes'

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

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