Sha256: dd52268927dcf892a8e5d04379959243515a8a4ff13d49b709f6cfe79516064a

Contents?: true

Size: 620 Bytes

Versions: 4

Compression:

Stored size: 620 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Repos::PubSubHubbub, '#unsubscribe_service' do
  let(:topic)  { "https://github.com/peter-murach/github/events/push"}
  let(:callback) { "github://campfire" }
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:service) { 'campfire' }

  after { reset_authentication_for subject }

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

  it "subscribes to service" do
    subject.should_receive(:unsubscribe).with(topic, callback)
    subject.unsubscribe_service user, repo, service
  end
end # unsubscribe_service

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/repos/pub_sub_hubbub/unsubscribe_service_spec.rb
github_api-0.12.2 spec/github/client/repos/pub_sub_hubbub/unsubscribe_service_spec.rb
github_api-0.12.1 spec/github/client/repos/pub_sub_hubbub/unsubscribe_service_spec.rb
github_api-0.12.0 spec/github/client/repos/pub_sub_hubbub/unsubscribe_service_spec.rb