summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/gc/enable_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/gc/enable_spec.rb')
-rw-r--r--spec/rubyspec/core/gc/enable_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/rubyspec/core/gc/enable_spec.rb b/spec/rubyspec/core/gc/enable_spec.rb
deleted file mode 100644
index d3581ad4d8..0000000000
--- a/spec/rubyspec/core/gc/enable_spec.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "GC.enable" do
-
- it "returns true iff the garbage collection was already disabled" do
- GC.enable
- GC.enable.should == false
- GC.disable
- GC.enable.should == true
- GC.enable.should == false
- end
-
-end