1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/spec/history_array_spec.rb

72 lines
1.7 KiB
Ruby
Raw Normal View History

require_relative 'helper'
2011-05-15 05:29:14 -04:00
describe Pry::HistoryArray do
before do
@array = Pry::HistoryArray.new 10
@populated = @array.dup << 1 << 2 << 3 << 4
2011-05-15 05:29:14 -04:00
end
it 'should have a maximum size specifed at creation time' do
2015-03-10 16:49:29 -04:00
expect(@array.max_size).to eq 10
2011-05-15 05:29:14 -04:00
end
it 'should be able to be added objects to' do
2015-03-10 16:49:29 -04:00
expect(@populated.size).to eq 4
expect(@populated.to_a).to eq [1, 2, 3, 4]
2011-05-15 05:29:14 -04:00
end
it 'should be able to access single elements' do
2015-03-10 16:49:29 -04:00
expect(@populated[2]).to eq 3
2011-05-15 05:29:14 -04:00
end
it 'should be able to access negative indices' do
2015-03-10 16:49:29 -04:00
expect(@populated[-1]).to eq 4
2011-05-15 05:29:14 -04:00
end
it 'should be able to access ranges' do
2015-03-10 16:49:29 -04:00
expect(@populated[1..2]).to eq [2, 3]
2011-05-15 05:29:14 -04:00
end
it 'should be able to access ranges starting from a negative index' do
2015-03-10 16:49:29 -04:00
expect(@populated[-2..3]).to eq [3, 4]
2011-05-15 05:29:14 -04:00
end
it 'should be able to access ranges ending at a negative index' do
2015-03-10 16:49:29 -04:00
expect(@populated[2..-1]).to eq [3, 4]
2011-05-15 05:29:14 -04:00
end
it 'should be able to access ranges using only negative indices' do
2015-03-10 16:49:29 -04:00
expect(@populated[-2..-1]).to eq [3, 4]
2011-05-15 05:29:14 -04:00
end
it 'should be able to use range where end is excluded' do
2015-03-10 16:49:29 -04:00
expect(@populated[-2...-1]).to eq [3]
2011-05-15 05:29:14 -04:00
end
it 'should be able to access slices using a size' do
2015-03-10 16:49:29 -04:00
expect(@populated[-3, 2]).to eq [2, 3]
2011-05-15 05:29:14 -04:00
end
it 'should remove older entries' do
11.times { |n| @array << n }
2015-03-10 16:49:29 -04:00
expect(@array[0]).to eq nil
expect(@array[1]).to eq 1
expect(@array[10]).to eq 10
2011-05-15 05:29:14 -04:00
end
it 'should not be larger than specified maximum size' do
12.times { |n| @array << n }
2015-03-10 16:49:29 -04:00
expect(@array.entries.compact.size).to eq 10
end
it 'should pop!' do
@populated.pop!
2015-03-10 16:49:29 -04:00
expect(@populated.to_a).to eq [1, 2, 3]
end
2013-12-07 07:09:42 -05:00
it 'should return an indexed hash' do
2015-03-10 16:49:29 -04:00
expect(@populated.to_h[0]).to eq @populated[0]
2013-12-07 07:09:42 -05:00
end
2011-05-15 05:29:14 -04:00
end