Sha256: a438dae70b4d78aac49d28b8b36a8ab44e33541eab61d4d58c84f6fe68aa76f4

Contents?: true

Size: 1.17 KB

Versions: 12

Compression:

Stored size: 1.17 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Activity::Watching, '#list' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/subscribers" }
  let(:body) { fixture("repos/watchers.json") }
  let(:status) { 200 }

  after { reset_authentication_for subject }

  before {
    stub_get(request_path).
      to_return(:body => body, :status => status, :headers => {})
  }

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

  it "should yield iterator if block given" do
    subject.should_receive(:list).with(user, repo).and_yield('github')
    subject.list(user, repo) { |param| 'github' }
  end

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

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

  it "should get watcher information" do
    watchers = subject.list user, repo
    watchers.first.login.should == 'octocat'
  end

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/activity/watching/list_spec.rb
github_api-0.8.11 spec/github/activity/watching/list_spec.rb
github_api-0.8.10 spec/github/activity/watching/list_spec.rb
github_api-0.8.9 spec/github/activity/watching/list_spec.rb
github_api-0.8.8 spec/github/activity/watching/list_spec.rb
github_api-0.8.7 spec/github/activity/watching/list_spec.rb
github_api-0.8.6 spec/github/activity/watching/list_spec.rb
github_api-0.8.5 spec/github/activity/watching/list_spec.rb
github_api-0.8.4 spec/github/activity/watching/list_spec.rb
github_api-0.8.3 spec/github/activity/watching/list_spec.rb
github_api-0.8.2 spec/github/activity/watching/list_spec.rb
github_api-0.8.1 spec/github/activity/watching/list_spec.rb