summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/index_spec.rb
blob: 43875f5a50e2af0a0252430c9c3f0c4ab95a8fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'
require_relative 'shared/key'

describe "ENV.index" do
  it_behaves_like :env_key, :index

  it "warns about deprecation" do
    -> do
      ENV.index("foo")
    end.should complain(/warning: ENV.index is deprecated; use ENV.key/)
  end
end