summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/invert_spec.rb
blob: 42170230db2e2c4d60ce777443ddd4437c2f3e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require File.expand_path('../../../spec_helper', __FILE__)

describe "ENV.invert" do
  before :each do
    ENV["foo"] = "bar"
  end

  after :each do
    ENV.delete "foo"
  end

  it "returns a hash with ENV.keys as the values and vice versa" do
    ENV.invert["bar"].should == "foo"
    ENV["foo"].should == "bar"
  end
end