summaryrefslogtreecommitdiff
path: root/spec/lib/api/helpers/pagination_spec.rb
blob: 040ff1a8ebeaa57119d7f92ca97ef4f32e5cdb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

describe API::Helpers::Pagination do
  subject { Class.new.include(described_class).new }

  describe '#paginate' do
    let(:relation) { double("relation") }
    let(:offset_pagination) { double("offset pagination") }
    let(:expected_result) { double("result") }

    it 'delegates to OffsetPagination' do
      expect(::Gitlab::Pagination::OffsetPagination).to receive(:new).with(subject).and_return(offset_pagination)
      expect(offset_pagination).to receive(:paginate).with(relation).and_return(expected_result)

      result = subject.paginate(relation)

      expect(result).to eq(expected_result)
    end
  end
end