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:
parent
2672502457
commit
9b545b0caf
2 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue