Sha256: 49621e848ac990febcf224a820ceac7c5821bd05f50b60978ab454f6e12a260c

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Releases, '#list' do
  let(:owner) { 'peter-murach' }
  let(:repo)  { 'github' }
  let(:path)  { "/repos/#{owner}/#{repo}/releases" }

  before {
    stub_get(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("repos/releases.json") }
    let(:status) { 200 }

    it { should respond_to :all }

    it { expect { subject.list }.to raise_error(ArgumentError) }

    it "should fail to get resource without repository" do
      expect { subject.list owner }.to raise_error(ArgumentError)
    end

    it "should get the resources" do
      subject.list owner, repo
      expect(a_get(path)).to have_been_made
    end

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

    it "should get key information" do
      keys = subject.list owner, repo
      expect(keys.first.tag_name).to eq 'v1.0.0'
    end

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

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

end # list

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/releases/list_spec.rb
github_api-0.11.2 spec/github/repos/releases/list_spec.rb
github_api-0.11.1 spec/github/repos/releases/list_spec.rb
github_api-0.11.0 spec/github/repos/releases/list_spec.rb