summaryrefslogtreecommitdiff
path: root/spec/ruby/core/tracepoint/trace_spec.rb
blob: c39721e69298b571f27166d62a8a38ad05e8e8ca (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

describe 'TracePoint.trace' do
  it 'activates the trace automatically' do
    trace = TracePoint.trace(:line) {}
    trace.should.enabled?
    trace.disable
  end
end