Sha256: 2ce0ab8c7af90c452d98cc5510a1c6b9cc5ac8df90574fee62eb19200ee8b5aa

Contents?: true

Size: 1.34 KB

Versions: 14

Compression:

Stored size: 1.34 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Activity::Notifications, '#subscribed?' do
  let(:thread_id) { 1 }
  let(:request_path) { "/notifications/threads/#{thread_id}/subscription" }

  before {
    subject.oauth_token = OAUTH_TOKEN
    stub_get(request_path).with(:query => {:access_token => OAUTH_TOKEN}).
    to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for subject }

  context 'resource found for authenticated user' do
    let(:body)   { fixture('activity/subscribed.json') }
    let(:status) { 200 }

    it 'asserts thread id presence' do
      expect { subject.subscribed? }.to raise_error(ArgumentError)
    end

    it 'gets the resource' do
      subject.subscribed? thread_id
      a_get(request_path).with(:query => {:access_token => OAUTH_TOKEN }).
        should have_been_made
    end

    it 'gets resource information' do
      subscribed = subject.subscribed? thread_id
      subscribed.subscribed.should be_true
    end
  end

  context "resource not found for a user" do
    let(:body) { '' }
    let(:status) { [404, "Not Found"] }

    it "should return 404 with a message 'Not Found'" do
      expect {
        subject.subscribed? thread_id
      }.to raise_error(Github::Error::NotFound)
    end
  end
end # subscribed

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.11.2 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.11.1 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.11.0 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.10.2 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.10.1 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.10.0 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.7 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.6 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.5 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.4 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.3 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.2 spec/github/activity/notifications/subscribed_spec.rb
github_api-0.9.1 spec/github/activity/notifications/subscribed_spec.rb