forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaged_request_spec.rb
More file actions
40 lines (32 loc) · 1.31 KB
/
paged_request_spec.rb
File metadata and controls
40 lines (32 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# encoding: utf-8
require 'spec_helper'
describe Github::PagedRequest do
it { described_class.constants.should include :FIRST_PAGE }
it { described_class.constants.should include :PER_PAGE }
it { described_class.constants.should include :NOT_FOUND }
context 'page_request' do
let(:path) { '/repos' }
let(:client) { Github::Client }
before do
Github.stub(:api_client).and_return client
client.stub(:get_request)
end
it 'sets default per_page when only custom page passed' do
Github.stub_chain(:api_client, :per_page).and_return nil
Github::PagedRequest.page_request path, {'page' => 3, 'per_page' => -1}
Github::PagedRequest.page.should eq 3
Github::PagedRequest.per_page.should eq 30
end
it 'sets default page when only custom per_page passed' do
Github.stub_chain(:api_client, :page).and_return nil
Github::PagedRequest.page_request path, {'per_page' => 33, 'page' => -1}
Github::PagedRequest.page.should eq 1
Github::PagedRequest.per_page.should eq 33
end
it 'sends get request with passed parameters' do
Github::Client.should_receive(:get_request).
with(path, 'page' => 2, 'per_page' => 33)
Github::PagedRequest.page_request path, {'page' => 2, 'per_page' => 33}
end
end
end # Github::PagedRequest