Sha256: 0c94450c1946b8d135939aeb61cb9fbcf84cde652d29222d5af48494dee212e3
Contents?: true
Size: 1.41 KB
Versions: 10
Compression:
Stored size: 1.41 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 Hashie::Mash 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
10 entries across 10 versions & 1 rubygems