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

8
spec/ruby/core/env/merge_spec.rb vendored Normal file
View file

@ -0,0 +1,8 @@
require_relative '../../spec_helper'
require_relative 'shared/update'
ruby_version_is "2.7" do
describe "ENV.merge!" do
it_behaves_like :env_update, :merge!
end
end