Sha256: b420da120de23548e641a9938e6fcd8ba816d44c59ccd0f9ef608268fbf9ee23

Contents?: true

Size: 1.42 KB

Versions: 14

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

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/users/update_spec.rb
github_api-0.11.2 spec/github/users/update_spec.rb
github_api-0.11.1 spec/github/users/update_spec.rb
github_api-0.11.0 spec/github/users/update_spec.rb
github_api-0.10.2 spec/github/users/update_spec.rb
github_api-0.10.1 spec/github/users/update_spec.rb
github_api-0.10.0 spec/github/users/update_spec.rb
github_api-0.9.7 spec/github/users/update_spec.rb
github_api-0.9.6 spec/github/users/update_spec.rb
github_api-0.9.5 spec/github/users/update_spec.rb
github_api-0.9.4 spec/github/users/update_spec.rb
github_api-0.9.3 spec/github/users/update_spec.rb
github_api-0.9.2 spec/github/users/update_spec.rb
github_api-0.9.1 spec/github/users/update_spec.rb