aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/env/index_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-11-30 21:26:52 +0100
committerBenoit Daloze <eregontp@gmail.com>2019-11-30 21:26:52 +0100
commit1243255c3a36433041012b6107a5ac48658a0895 (patch)
tree04440f84b48999ff08d4a2a16d066d0ad731400e /spec/ruby/core/env/index_spec.rb
parentab8345271eb87ff155d8bd5f22f53a4cf2902c26 (diff)
downloadruby-1243255c3a36433041012b6107a5ac48658a0895.tar.gz
Update to ruby/spec@4eec3dc
Diffstat (limited to 'spec/ruby/core/env/index_spec.rb')
-rw-r--r--spec/ruby/core/env/index_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/ruby/core/env/index_spec.rb b/spec/ruby/core/env/index_spec.rb
index 04986a0421..43875f5a50 100644
--- a/spec/ruby/core/env/index_spec.rb
+++ b/spec/ruby/core/env/index_spec.rb
@@ -3,4 +3,10 @@ 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