Sha256: df0d7bb172e90ebf2a950579a02755e169fa517cc2a2f2183ab8922efe8df6c1

Contents?: true

Size: 1.03 KB

Versions: 18

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::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

18 entries across 18 versions & 1 rubygems

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