Sha256: 5e1b501874c77832d90f2ca9183aff71a8ad652260db70ccac7ab114fb4598aa

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Gists, '#starred' do
  let(:request_path) { "/gists/starred" }

  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('gists/gists.json') }
    let(:status) { 200 }

    it "should get the resources" do
      subject.starred
      a_get(request_path).should have_been_made
    end

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

    it "should get gist information" do
      gists = subject.starred
      gists.first.user.login.should == 'octocat'
    end

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

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

end # starred

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/gists/starred_spec.rb
github_api-0.12.2 spec/github/client/gists/starred_spec.rb
github_api-0.12.1 spec/github/client/gists/starred_spec.rb
github_api-0.12.0 spec/github/client/gists/starred_spec.rb