Sha256: 06d393e9df813211ccf37f6d22b424f6bd59de252231e3ba26befde1a67515d6
Contents?: true
Size: 545 Bytes
Versions: 52
Compression:
Stored size: 545 Bytes
Contents
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
Version data entries
52 entries across 52 versions & 2 rubygems