aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/gc/profiler/enabled_spec.rb
blob: 12cf3173f488a6caf08f3a94e70d30906823d3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require File.expand_path('../../../../spec_helper', __FILE__)

describe "GC::Profiler.enabled?" do
  before do
    @status = GC::Profiler.enabled?
  end

  after do
    @status ? GC::Profiler.enable : GC::Profiler.disable
  end

  it "reports as enabled when enabled" do
    GC::Profiler.enable
    GC::Profiler.enabled?.should be_true
  end

  it "reports as disabled when disabled" do
    GC::Profiler.disable
    GC::Profiler.enabled?.should be_false
  end
end