2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-12-01 15:41:50 +00: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
|