forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_spec.rb
More file actions
49 lines (37 loc) · 1.36 KB
/
Copy pathcreate_spec.rb
File metadata and controls
49 lines (37 loc) · 1.36 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
# encoding: utf-8
require 'spec_helper'
describe Github::Authorizations, '#create' do
let(:basic_auth) { 'login:password' }
let(:request_path) { "/authorizations" }
let(:host) { "https://#{basic_auth}@api.github.com" }
let(:inputs) { { :scopes => ['repo'] } }
before {
stub_post(request_path, host).to_return(:body => body, :status => status,
:headers => {:content_type => "application/json; charset=utf-8"})
}
before { subject.basic_auth = basic_auth }
after { reset_authentication_for(subject) }
context "resouce created" do
let(:body) { fixture('auths/authorization.json') }
let(:status) { 201 }
it "should fail to get resource without basic authentication" do
reset_authentication_for subject
expect { subject.create }.to raise_error(ArgumentError)
end
it "should create resource successfully" do
subject.create inputs
a_post(request_path, host).with(inputs).should have_been_made
end
it "should return the resource" do
authorization = subject.create inputs
authorization.should be_a Github::ResponseWrapper
end
it "should get the authorization information" do
authorization = subject.create inputs
authorization.token.should == 'abc123'
end
end
it_should_behave_like 'request failure' do
let(:requestable) { subject.create inputs }
end
end # create