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
51 lines (40 loc) · 1.27 KB
/
Copy pathcreate_spec.rb
File metadata and controls
51 lines (40 loc) · 1.27 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
# encoding: utf-8
require 'spec_helper'
describe Github::Users::Keys, '#create' do
let(:request_path) { "/user/keys" }
before {
subject.oauth_token = OAUTH_TOKEN
stub_post(request_path).with(:body => inputs.except(:unrelated),
:query => {:access_token => OAUTH_TOKEN}).
to_return(:body => body, :status => status,
:headers => {:content_type => "application/json; charset=utf-8"})
}
after { reset_authentication_for(subject) }
let(:inputs) {
{
:title => "octocat@octomac",
:key => "ssh-rsa AAA...",
:unrelated => true
}
}
context "resouce created" do
let(:body) { fixture('users/key.json') }
let(:status) { 201 }
it "should create resource successfully" do
subject.create inputs
a_post(request_path).with(:body => inputs.except(:unrelated),
:query => {:access_token => OAUTH_TOKEN}).should have_been_made
end
it "should return the resource" do
key = subject.create inputs
key.should be_a Github::ResponseWrapper
end
it "should get the key information" do
key = subject.create inputs
key.title.should == 'octocat@octomac'
end
end
it_should_behave_like 'request failure' do
let(:requestable) { subject.create inputs }
end
end # create