forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_spec.rb
More file actions
90 lines (70 loc) · 2.24 KB
/
Copy pathlist_spec.rb
File metadata and controls
90 lines (70 loc) · 2.24 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# encoding: utf-8
require 'spec_helper'
describe Github::Issues, '#list' do
let(:request_path) { "/issues" }
let(:body) { fixture('issues/issues.json') }
let(:status) { 200 }
before {
stub_get(request_path).to_return(:body => body, :status => status,
:headers => {:content_type => "application/json; charset=utf-8"})
}
after { reset_authentication_for(subject) }
context "resource found" do
it { should respond_to(:all) }
it "should get the resources" do
subject.list
a_get(request_path).should have_been_made
end
it_should_behave_like 'an array of resources' do
let(:requestable) { subject.list }
end
it "should get issue information" do
issues = subject.list
issues.first.title.should == 'Found a bug'
end
it "should yield to a block" do
yielded = []
result = subject.list { |obj| yielded << obj }
yielded.should == result
end
end
context 'for a given organization' do
let(:org) { 'github' }
let(:request_path) { "/orgs/#{org}/issues" }
it 'should get the resources' do
subject.list :org => org
a_get(request_path).should have_been_made
end
end
context 'for an user' do
let(:request_path) { "/user/issues" }
it 'should get the resources' do
subject.list :user
a_get(request_path).should have_been_made
end
end
context "for a repository" do
let(:user) { 'peter-murach' }
let(:repo) { 'github' }
let(:request_path) { "/repos/#{user}/#{repo}/issues" }
it "should get the resources" do
subject.list :user => user, :repo => repo
a_get(request_path).should have_been_made
end
it_should_behave_like 'an array of resources' do
let(:requestable) { subject.list :user => user, :repo => repo }
end
it "should get repository issue information" do
repo_issues = subject.list :user => user, :repo => repo
repo_issues.first.title.should == 'Found a bug'
end
it "should yield to a block" do
yielded = []
result = subject.list(:user => user, :repo => repo) { |obj| yielded << obj }
yielded.should == result
end
end
it_should_behave_like 'request failure' do
let(:requestable) { subject.list }
end
end # list