Sha256: c47bab64bfb28697c8b71e71c06d88fe55046946691e85f922e079ede04218a0
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Repos::Hooks, '#get' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:hook_id) { 1 } let(:request_path) { "/repos/#{user}/#{repo}/hooks/#{hook_id}" } 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) { fixture('repos/hook.json') } let(:status) { 200 } it { subject.should respond_to :find } it "should fail to get resource without hook id" do expect { subject.get user, repo }.to raise_error(ArgumentError) end it "should get the resource" do subject.get user, repo, hook_id a_get(request_path).should have_been_made end it "should get hook information" do hook = subject.get user, repo, hook_id hook.id.should == hook_id hook.name.should == 'web' end it "should return mash" do hook = subject.get user, repo, hook_id hook.should be_a Hashie::Mash end end it_should_behave_like 'request failure' do let(:requestable) { subject.get user, repo, hook_id } end end # get
Version data entries
10 entries across 10 versions & 1 rubygems