summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/env/clear_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/env/clear_spec.rb')
-rw-r--r--spec/rubyspec/core/env/clear_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/rubyspec/core/env/clear_spec.rb b/spec/rubyspec/core/env/clear_spec.rb
deleted file mode 100644
index c184926cc2..0000000000
--- a/spec/rubyspec/core/env/clear_spec.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "ENV.clear" do
- it "deletes all environment variables" do
- orig = ENV.to_hash
- begin
- ENV.clear
-
- # This used 'env' the helper before. That shells out to 'env' which
- # itself sets up certain environment variables before it runs, because
- # the shell sets them up before it runs any command.
- #
- # Thusly, you can ONLY test this by asking through ENV itself.
- ENV.size.should == 0
- ensure
- ENV.replace orig
- end
- end
-
-end