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

Fix ruby_version guards in Unicode/Emoji version specs

Correct version guards in ruby_version in Unicode/Emoji version
specs to correctly use exclusive range endings.
This commit is contained in:
Martin Dürst 2021-07-04 20:56:13 +09:00
parent 323ff38c04
commit 146a943d9a
2 changed files with 3 additions and 3 deletions

View file

@ -14,8 +14,8 @@ describe "RbConfig::CONFIG['UNICODE_EMOJI_VERSION']" do
end
end
ruby_version_is "2.7"..."3.0" do
it "is 12.1 for Ruby 2.7" do
ruby_version_is "2.7"..."3.1" do
it "is 12.1 for Ruby 2.7 and 3.0" do
RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "12.1"
end
end

View file

@ -20,7 +20,7 @@ describe "RbConfig::CONFIG['UNICODE_VERSION']" do
end
end
ruby_version_is "2.6.3"..."3.0" do
ruby_version_is "2.6.3"..."3.1" do
it "is 12.1.0 for Ruby 2.6.3+, Ruby 2.7, and Ruby 3.0" do
RbConfig::CONFIG['UNICODE_VERSION'].should == "12.1.0"
end