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

update specs to check for Unicode Version 14.0.0/Emoji Version 14.0

This commit is contained in:
Martin Dürst 2022-03-11 17:18:42 +09:00
parent 2672502457
commit 9b545b0caf
2 changed files with 12 additions and 0 deletions

View file

@ -25,4 +25,10 @@ describe "RbConfig::CONFIG['UNICODE_EMOJI_VERSION']" do
RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "13.1"
end
end
ruby_version_is "3.2" do
it "is 14.0 for Ruby 3.2" do
RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "14.0"
end
end
end

View file

@ -25,4 +25,10 @@ describe "RbConfig::CONFIG['UNICODE_VERSION']" do
RbConfig::CONFIG['UNICODE_VERSION'].should == "13.0.0"
end
end
ruby_version_is "3.2" do
it "is 14.0.0 for Ruby 3.2" do
RbConfig::CONFIG['UNICODE_VERSION'].should == "14.0.0"
end
end
end