summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/shared
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/shared')
-rw-r--r--spec/ruby/core/string/shared/slice.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/ruby/core/string/shared/slice.rb b/spec/ruby/core/string/shared/slice.rb
index 69997b7c1d..a674e0b6ef 100644
--- a/spec/ruby/core/string/shared/slice.rb
+++ b/spec/ruby/core/string/shared/slice.rb
@@ -335,6 +335,16 @@ describe :string_slice_range, shared: true do
"hello there".send(@method, eval("(-4...)")).should == "here"
end
end
+
+ ruby_version_is "2.7" do
+ it "works with beginless ranges" do
+ "hello there".send(@method, eval("(..5)")).should == "hello "
+ "hello there".send(@method, eval("(...5)")).should == "hello"
+ "hello there".send(@method, eval("(..-4)")).should == "hello th"
+ "hello there".send(@method, eval("(...-4)")).should == "hello t"
+ "hello there".send(@method, eval("(...nil)")).should == "hello there"
+ end
+ end
end
describe :string_slice_regexp, shared: true do