diff options
| author | Benoit Daloze <eregontp@gmail.com> | 2021-01-28 17:08:57 +0100 |
|---|---|---|
| committer | Benoit Daloze <eregontp@gmail.com> | 2021-01-28 17:08:57 +0100 |
| commit | 2e32b919b4f2f5b7f2e1509d6fa985526ef1f61c (patch) | |
| tree | aedadac3c99ca0097c2bbeaa95830332d6fb9971 /spec/ruby/core/kernel/caller_spec.rb | |
| parent | 1b377b32c8616f85c0a97e68758c5c2db83f2169 (diff) | |
Update to ruby/spec@8cafaa5
Diffstat (limited to 'spec/ruby/core/kernel/caller_spec.rb')
| -rw-r--r-- | spec/ruby/core/kernel/caller_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/ruby/core/kernel/caller_spec.rb b/spec/ruby/core/kernel/caller_spec.rb index 06e9ea6fc8..6c175868cb 100644 --- a/spec/ruby/core/kernel/caller_spec.rb +++ b/spec/ruby/core/kernel/caller_spec.rb @@ -52,6 +52,14 @@ describe 'Kernel#caller' do end end + ruby_version_is "2.7" do + it "works with beginless ranges" do + locations1 = KernelSpecs::CallerTest.locations(0) + locations2 = KernelSpecs::CallerTest.locations(eval("(..5)")) + locations2.map(&:to_s)[eval("(2..)")].should == locations1[eval("(..5)")].map(&:to_s)[eval("(2..)")] + end + end + guard -> { Kernel.instance_method(:tap).source_location } do it "includes core library methods defined in Ruby" do file, line = Kernel.instance_method(:tap).source_location |
