Sha256: d4a9d79c557f34182b17208c47f464bf77e0ab723dd6b24c8f7b157982f1ef6b

Contents?: true

Size: 1.35 KB

Versions: 14

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Collaborators, '#collaborator?' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:collaborator) { 'octocat' }
  let(:request_path) { "/repos/#{user}/#{repo}/collaborators/#{collaborator}" }

  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) { '' }
    let(:status) { 204 }

    it "should fail to get resource without collaborator name" do
      expect { subject.collaborator? user, repo }.to raise_error(ArgumentError)
    end

    it "should get the resource" do
      subject.collaborator? user, repo, collaborator
      a_get(request_path).should have_been_made
    end

    it "should find collaborator" do
      subject.should_receive(:collaborator?).
        with(user, repo, collaborator) { true }
      subject.collaborator? user, repo, collaborator
    end
  end

  context "resource not found" do
    let(:body) { '' }
    let(:status) { 404 }

    it "should fail to retrieve resource" do
      subject.should_receive(:collaborator?).
        with(user, repo, collaborator) { false }
      subject.collaborator? user, repo, collaborator
    end
  end
end # collaborator?

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/collaborators/get_spec.rb
github_api-0.11.2 spec/github/repos/collaborators/get_spec.rb
github_api-0.11.1 spec/github/repos/collaborators/get_spec.rb
github_api-0.11.0 spec/github/repos/collaborators/get_spec.rb
github_api-0.10.2 spec/github/repos/collaborators/get_spec.rb
github_api-0.10.1 spec/github/repos/collaborators/get_spec.rb
github_api-0.10.0 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.7 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.6 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.5 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.4 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.3 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.2 spec/github/repos/collaborators/get_spec.rb
github_api-0.9.1 spec/github/repos/collaborators/get_spec.rb