summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/invert_spec.rb
blob: c095374d9502bb9ec40a18fdfecc93a8438db0a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../spec_helper'

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