mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 07:11:34 +08:00
DEV: followup to 8edd2b38cb to use existing spec (#11830)
This commit also better explains in spec why max_values might be off by one.
This commit is contained in:
@ -1,17 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe TimelineLookup do
|
||||
|
||||
context '.build' do
|
||||
it 'keeps the last tuple in the lookup' do
|
||||
tuples = [
|
||||
[7173, 400], [7174, 390], [7175, 380], [7176, 370], [7177, 1]
|
||||
]
|
||||
|
||||
expect(TimelineLookup.build(tuples, 2)).to eq([[1, 400], [4, 370], [5, 1]])
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user