1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Alias ENV.merge! as ENV.update

[Feature #15947]

Closes: https://github.com/ruby/ruby/pull/2246
This commit is contained in:
Kenichi Kamiya 2019-06-21 12:28:28 +09:00 committed by Benoit Daloze
parent 3b2d11ad90
commit d01fd82187
4 changed files with 34 additions and 21 deletions

21
spec/ruby/core/env/shared/update.rb vendored Normal file
View file

@ -0,0 +1,21 @@
describe :env_update, shared: true do
it "adds the parameter hash to ENV" do
ENV["foo"].should == nil
ENV.send @method, "foo" => "bar"
ENV["foo"].should == "bar"
ENV.delete "foo"
end
it "yields key, the old value and the new value when replacing entries" do
ENV.send @method, "foo" => "bar"
ENV["foo"].should == "bar"
ENV.send(@method, "foo" => "boo") do |key, old, new|
key.should == "foo"
old.should == "bar"
new.should == "boo"
"rab"
end
ENV["foo"].should == "rab"
ENV.delete "foo"
end
end