Sha256: 832f6fe9d6270ec531a2d1036fd137fe753000c365e6f9b9551a7e9f100bacb8
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Users, '#update' do let(:key_id) { 1 } let(:request_path) { "/user" } before { subject.oauth_token = OAUTH_TOKEN stub_patch(request_path).with(:body => inputs, :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) { { "name" => "monalisa octocat", "email" => "octocat@github.com", "blog" => "https://github.com/blog", "company" => "GitHub", "location" => "San Francisco", "hireable" => true, "bio" => "There once...", } } context "resouce updated" do let(:body) { fixture('users/user.json') } let(:status) { 200 } it "should create resource successfully" do subject.update inputs a_patch(request_path).with(:body => inputs, :query => {:access_token => OAUTH_TOKEN}).should have_been_made end it "should return the resource" do user_resource = subject.update inputs user_resource.should be_a Github::ResponseWrapper end it "should get the resource information" do user_resource = subject.update inputs user_resource.login.should == 'octocat' end end it_should_behave_like 'request failure' do let(:requestable) { subject.update inputs } end end # update
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_api-0.9.0 | spec/github/users/update_spec.rb |