diff options
Diffstat (limited to 'spec/ruby/core/gc/profiler/enabled_spec.rb')
| -rw-r--r-- | spec/ruby/core/gc/profiler/enabled_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/ruby/core/gc/profiler/enabled_spec.rb b/spec/ruby/core/gc/profiler/enabled_spec.rb new file mode 100644 index 0000000000..cfcd0951f0 --- /dev/null +++ b/spec/ruby/core/gc/profiler/enabled_spec.rb @@ -0,0 +1,21 @@ +require_relative '../../../spec_helper' + +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 == true + end + + it "reports as disabled when disabled" do + GC::Profiler.disable + GC::Profiler.enabled?.should == false + end +end |
