Sha256: 38a5f70006b97479d432c044a6623f9d2356c779088b4c6e6d453a157b5cbb22

Contents?: true

Size: 1.06 KB

Versions: 25

Compression:

Stored size: 1.06 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Hooks, '#test' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:hook_id) { 1 }
  let(:request_path) { "/repos/#{user}/#{repo}/hooks/#{hook_id}/test" }

  before {
    stub_post(request_path).to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for(subject) }

  context "resource tested successfully" do
    let(:body) { '' }
    let(:status) { 204 }

    it "should fail to test without 'user/repo' parameters" do
      expect { subject.test }.to raise_error(ArgumentError)
    end

    it "should fail to test resource without 'hook_id'" do
      expect { subject.test user, repo }.to raise_error(ArgumentError)
    end

    it "should trigger test for the resource" do
      subject.test user, repo, hook_id
      a_post(request_path).should have_been_made
    end
  end

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

end # test

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/hooks/test_spec.rb
github_api-0.11.2 spec/github/repos/hooks/test_spec.rb
github_api-0.11.1 spec/github/repos/hooks/test_spec.rb
github_api-0.11.0 spec/github/repos/hooks/test_spec.rb
github_api-0.10.2 spec/github/repos/hooks/test_spec.rb
github_api-0.10.1 spec/github/repos/hooks/test_spec.rb
github_api-0.10.0 spec/github/repos/hooks/test_spec.rb
github_api-0.9.7 spec/github/repos/hooks/test_spec.rb
github_api-0.9.6 spec/github/repos/hooks/test_spec.rb
github_api-0.9.5 spec/github/repos/hooks/test_spec.rb
github_api-0.9.4 spec/github/repos/hooks/test_spec.rb
github_api-0.9.3 spec/github/repos/hooks/test_spec.rb
github_api-0.9.2 spec/github/repos/hooks/test_spec.rb
github_api-0.9.1 spec/github/repos/hooks/test_spec.rb
github_api-0.9.0 spec/github/repos/hooks/test_spec.rb
github_api-0.8.11 spec/github/repos/hooks/test_spec.rb
github_api-0.8.10 spec/github/repos/hooks/test_spec.rb
github_api-0.8.9 spec/github/repos/hooks/test_spec.rb
github_api-0.8.8 spec/github/repos/hooks/test_spec.rb
github_api-0.8.7 spec/github/repos/hooks/test_spec.rb