Sha256: 6f5707f89a718a867e32be792654a5807b32e1abe9763fa7674188dab3f69a46

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Gists::Comments, '#list' do
  let(:gist_id) { 1 }
  let(:request_path) { "/gists/#{gist_id}/comments" }

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

    it { should respond_to :all }

    it "throws error if gist id not provided" do
      expect { subject.list nil}.to raise_error(ArgumentError)
    end

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

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

    it "should get gist information" do
      comments = subject.list gist_id
      comments.first.user.login.should == 'octocat'
    end

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

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

end # list

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/gists/comments/list_spec.rb
github_api-0.8.11 spec/github/gists/comments/list_spec.rb
github_api-0.8.10 spec/github/gists/comments/list_spec.rb