1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2020-02-28 19:07:17 +01:00
parent 5d21050182
commit a0f5ff4c3c
75 changed files with 851 additions and 143 deletions

View file

@ -32,4 +32,38 @@ describe "Thread#backtrace" do
t.join
backtrace.should be_kind_of(Array)
end
it "can be called with a number of locations to omit" do
locations1 = Thread.current.backtrace
locations2 = Thread.current.backtrace(2)
locations1[2..-1].length.should == locations2.length
locations1[2..-1].map(&:to_s).should == locations2.map(&:to_s)
end
it "can be called with a maximum number of locations to return as second parameter" do
locations1 = Thread.current.backtrace
locations2 = Thread.current.backtrace(2, 3)
locations1[2..4].map(&:to_s).should == locations2.map(&:to_s)
end
it "can be called with a range" do
locations1 = Thread.current.backtrace
locations2 = Thread.current.backtrace(2..4)
locations1[2..4].map(&:to_s).should == locations2.map(&:to_s)
end
it "can be called with a range whose end is negative" do
Thread.current.backtrace(2..-1).should == Thread.current.backtrace[2..-1]
Thread.current.backtrace(2..-2).should == Thread.current.backtrace[2..-2]
end
it "returns nil if omitting more locations than available" do
Thread.current.backtrace(100).should == nil
Thread.current.backtrace(100..-1).should == nil
end
it "returns [] if omitting exactly the number of locations available" do
omit = Thread.current.backtrace.length
Thread.current.backtrace(omit).should == []
end
end