Sha256: c66ab8d4fba63b49daf7989b44a94a3667532cc6f60fb9ea87a3b136b3ea88e8

Contents?: true

Size: 1.02 KB

Versions: 25

Compression:

Stored size: 1.02 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Users, '#list' do
  let(:request_path) { "/users" }

  before {
    stub_get(request_path).to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for(subject) }

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

    it { should respond_to :all }

    it "should get the resources" do
      subject.list
      a_get(request_path).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
      users = subject.list
      users.first.login.should == 'octocat'
    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

25 entries across 25 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/users/list_spec.rb
github_api-0.11.2 spec/github/users/list_spec.rb
github_api-0.11.1 spec/github/users/list_spec.rb
github_api-0.11.0 spec/github/users/list_spec.rb
github_api-0.10.2 spec/github/users/list_spec.rb
github_api-0.10.1 spec/github/users/list_spec.rb
github_api-0.10.0 spec/github/users/list_spec.rb
github_api-0.9.7 spec/github/users/list_spec.rb
github_api-0.9.6 spec/github/users/list_spec.rb
github_api-0.9.5 spec/github/users/list_spec.rb
github_api-0.9.4 spec/github/users/list_spec.rb
github_api-0.9.3 spec/github/users/list_spec.rb
github_api-0.9.2 spec/github/users/list_spec.rb
github_api-0.9.1 spec/github/users/list_spec.rb
github_api-0.9.0 spec/github/users/list_spec.rb
github_api-0.8.11 spec/github/users/list_spec.rb
github_api-0.8.10 spec/github/users/list_spec.rb
github_api-0.8.9 spec/github/users/list_spec.rb
github_api-0.8.8 spec/github/users/list_spec.rb
github_api-0.8.7 spec/github/users/list_spec.rb