summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/shared/slice.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/shared/slice.rb')
-rw-r--r--spec/ruby/core/string/shared/slice.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/spec/ruby/core/string/shared/slice.rb b/spec/ruby/core/string/shared/slice.rb
index a674e0b6ef..1db8fd6730 100644
--- a/spec/ruby/core/string/shared/slice.rb
+++ b/spec/ruby/core/string/shared/slice.rb
@@ -327,13 +327,11 @@ describe :string_slice_range, shared: true do
-> { "hello".send(@method, 0..bignum_value) }.should raise_error(RangeError)
end
- ruby_version_is "2.6" do
- it "works with endless ranges" do
- "hello there".send(@method, eval("(2..)")).should == "llo there"
- "hello there".send(@method, eval("(2...)")).should == "llo there"
- "hello there".send(@method, eval("(-4..)")).should == "here"
- "hello there".send(@method, eval("(-4...)")).should == "here"
- end
+ it "works with endless ranges" do
+ "hello there".send(@method, eval("(2..)")).should == "llo there"
+ "hello there".send(@method, eval("(2...)")).should == "llo there"
+ "hello there".send(@method, eval("(-4..)")).should == "here"
+ "hello there".send(@method, eval("(-4...)")).should == "here"
end
ruby_version_is "2.7" do