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

ruby_version_is ''...'3.0' do
  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
end