summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2019-09-26 17:27:47 +0200
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-27 13:52:33 +0900
commiteff15a269fdc37d2b09cf1dfe8c1b1bf6e377a32 (patch)
tree893d0292f67673e2425727e2ecd398a89d7043c9 /spec
parent2082a26dc75da7cb76150b51cd5b8f7636ad0fa2 (diff)
[EXPERIMENTAL] Make NilClass#to_s, TrueClass#to_s and FalseClass#to_s return a frozen String
* Always the same frozen String for each of these values. * Avoids extra allocations whenever calling these 3 methods. * See [Feature #16150]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2492
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/false/to_s_spec.rb10
-rw-r--r--spec/ruby/core/nil/to_s_spec.rb10
-rw-r--r--spec/ruby/core/true/to_s_spec.rb10
3 files changed, 30 insertions, 0 deletions
diff --git a/spec/ruby/core/false/to_s_spec.rb b/spec/ruby/core/false/to_s_spec.rb
index 40853da88b..c996d87000 100644
--- a/spec/ruby/core/false/to_s_spec.rb
+++ b/spec/ruby/core/false/to_s_spec.rb
@@ -4,4 +4,14 @@ describe "FalseClass#to_s" do
it "returns the string 'false'" do
false.to_s.should == "false"
end
+
+ ruby_version_is "2.7" do
+ it "returns a frozen string" do
+ false.to_s.frozen?.should == true
+ end
+
+ it "always returns the same string" do
+ false.to_s.should equal(false.to_s)
+ end
+ end
end
diff --git a/spec/ruby/core/nil/to_s_spec.rb b/spec/ruby/core/nil/to_s_spec.rb
index c7a18e2527..4b61f589f7 100644
--- a/spec/ruby/core/nil/to_s_spec.rb
+++ b/spec/ruby/core/nil/to_s_spec.rb
@@ -4,4 +4,14 @@ describe "NilClass#to_s" do
it "returns the string ''" do
nil.to_s.should == ""
end
+
+ ruby_version_is "2.7" do
+ it "returns a frozen string" do
+ nil.to_s.frozen?.should == true
+ end
+
+ it "always returns the same string" do
+ nil.to_s.should equal(nil.to_s)
+ end
+ end
end
diff --git a/spec/ruby/core/true/to_s_spec.rb b/spec/ruby/core/true/to_s_spec.rb
index 30ca354b0c..68b0052c5d 100644
--- a/spec/ruby/core/true/to_s_spec.rb
+++ b/spec/ruby/core/true/to_s_spec.rb
@@ -4,4 +4,14 @@ describe "TrueClass#to_s" do
it "returns the string 'true'" do
true.to_s.should == "true"
end
+
+ ruby_version_is "2.7" do
+ it "returns a frozen string" do
+ true.to_s.frozen?.should == true
+ end
+
+ it "always returns the same string" do
+ true.to_s.should equal(true.to_s)
+ end
+ end
end