2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-12-01 10:41:50 -05:00
|
|
|
|
|
|
|
describe 'TracePoint#inspect' do
|
|
|
|
it 'returns a string containing a human-readable TracePoint status' do
|
|
|
|
TracePoint.new(:call) {}.inspect.should ==
|
|
|
|
'#<TracePoint:disabled>'
|
|
|
|
end
|
|
|
|
end
|