aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/reverse_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/reverse_spec.rb')
-rw-r--r--spec/ruby/core/string/reverse_spec.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/ruby/core/string/reverse_spec.rb b/spec/ruby/core/string/reverse_spec.rb
index 3941ea0521..eef46063a5 100644
--- a/spec/ruby/core/string/reverse_spec.rb
+++ b/spec/ruby/core/string/reverse_spec.rb
@@ -10,9 +10,11 @@ describe "String#reverse" do
"".reverse.should == ""
end
- it "taints the result if self is tainted" do
- "".taint.reverse.tainted?.should == true
- "m".taint.reverse.tainted?.should == true
+ ruby_version_is ''...'2.7' do
+ it "taints the result if self is tainted" do
+ "".taint.reverse.tainted?.should == true
+ "m".taint.reverse.tainted?.should == true
+ end
end
it "reverses a string with multi byte characters" do