1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-08-21 22:01:34 +00:00
parent 2aefb19888
commit b448f23e21
6 changed files with 51 additions and 56 deletions

View file

@ -57,7 +57,7 @@ describe "A block yielded a single" do
result.should == [{"a" => 1, "b" => 2}, {}]
end
describe("when non-symbol keys are in a keyword arguments Hash") do
describe "when non-symbol keys are in a keyword arguments Hash" do
ruby_version_is ""..."2.6" do
it "separates non-symbol keys and symbol keys" do
result = m(["a" => 10, b: 2]) { |a=nil, **b| [a, b] }