summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/empty_spec.rb
blob: fa02985a6e884ef44d885c3d06eea78b806b4aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../../../spec_helper', __FILE__)

describe "ENV.empty?" do

  it "returns true if the Environment is empty" do
    if ENV.keys.size > 0
      ENV.empty?.should == false
    end
    orig = ENV.to_hash
    begin
      ENV.clear
      ENV.empty?.should == true
    ensure
      ENV.replace orig
    end
  end

  it "returns false if not empty" do
    if ENV.keys.size > 0
      ENV.empty?.should == false
    end
  end
end