Sha256: 8707e79f398e0caf2b0e0c550a399aeb754b1e9c83dcadc01dd051c5358072c4
Contents?: true
Size: 1.08 KB
Versions: 18
Compression:
Stored size: 1.08 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Orgs::Teams, '#add_repo' do let(:team_id) { 1 } let(:repo) { 'github' } let(:user) { 'peter-murach' } let(:request_path) { "/teams/#{team_id}/repos/#{user}/#{repo}" } before { stub_put(request_path).to_return(:body => body, :status => status, :headers => {:content_type => "application/json; charset=utf-8"}) } after { reset_authentication_for(subject) } context "resouce added" do let(:body) { '' } let(:status) { 204 } it "should fail to add resource if 'team_id' input is nil" do expect { subject.add_repo nil, user, repo }.to raise_error(ArgumentError) end it "should fail to add resource if 'user' input is nil" do expect { subject.add_repo team_id, nil, repo }.to raise_error(ArgumentError) end it "should add resource successfully" do subject.add_repo team_id, user, repo a_put(request_path).should have_been_made end end it_should_behave_like 'request failure' do let(:requestable) { subject.add_repo team_id, user, repo } end end # add_repo
Version data entries
18 entries across 18 versions & 1 rubygems