debian-mirror-gitlab/spec/lib/api/helpers/pagination_spec.rb

19 lines
590 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe API::Helpers::Pagination do
2019-12-26 22:10:19 +05:30
subject { Class.new.include(described_class).new }
2019-09-04 21:01:54 +05:30
2020-03-13 15:44:24 +05:30
let(:paginator) { double('paginator') }
let(:relation) { double('relation') }
let(:expected_result) { double('expected result') }
2020-01-01 13:55:28 +05:30
2020-03-13 15:44:24 +05:30
it 'delegates to OffsetPagination' do
expect(Gitlab::Pagination::OffsetPagination).to receive(:new).with(subject).and_return(paginator)
expect(paginator).to receive(:paginate).with(relation).and_return(expected_result)
2020-01-01 13:55:28 +05:30
2020-03-13 15:44:24 +05:30
expect(subject.paginate(relation)).to eq(expected_result)
2020-01-01 13:55:28 +05:30
end
2017-08-17 22:00:37 +05:30
end