Sha256: 91c817fd5997a287774361de5fcb9f92356656393bdfd0ad33767d8e941b92d4

Contents?: true

Size: 1.23 KB

Versions: 17

Compression:

Stored size: 1.23 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Users::Keys, '#list' do
  let(:key_id) { 1 }
  let(:request_path) { "/user/keys" }

  before {
    subject.oauth_token = OAUTH_TOKEN
    stub_get(request_path).with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
      to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for(subject) }

  context "resource found for an authenticated user" do
    let(:body) { fixture('users/keys.json') }
    let(:status) { 200 }

    it {should respond_to :all }

    it "should get the resources" do
      subject.list
      a_get(request_path).with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
        should have_been_made
    end

    it_should_behave_like 'an array of resources' do
      let(:requestable) { subject.list }
    end

    it "should get keys information" do
      keys = subject.list
      keys.first.id.should == key_id
    end

    it "should yield to a block" do
      yielded = []
      result = subject.list { |obj| yielded << obj }
      yielded.should == result
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.list }
  end

end # list

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
github_api-0.9.6 spec/github/users/keys/list_spec.rb
github_api-0.9.5 spec/github/users/keys/list_spec.rb
github_api-0.9.4 spec/github/users/keys/list_spec.rb
github_api-0.9.3 spec/github/users/keys/list_spec.rb
github_api-0.9.2 spec/github/users/keys/list_spec.rb
github_api-0.9.1 spec/github/users/keys/list_spec.rb
github_api-0.9.0 spec/github/users/keys/list_spec.rb
github_api-0.8.11 spec/github/users/keys/list_spec.rb
github_api-0.8.10 spec/github/users/keys/list_spec.rb
github_api-0.8.9 spec/github/users/keys/list_spec.rb
github_api-0.8.8 spec/github/users/keys/list_spec.rb
github_api-0.8.7 spec/github/users/keys/list_spec.rb
github_api-0.8.6 spec/github/users/keys/list_spec.rb
github_api-0.8.5 spec/github/users/keys/list_spec.rb
github_api-0.8.4 spec/github/users/keys/list_spec.rb
github_api-0.8.3 spec/github/users/keys/list_spec.rb
github_api-0.8.2 spec/github/users/keys/list_spec.rb