Sha256: 246e93de53b4d67f3eac2eac8b7a9f02cf485087b442a7f575ff8a965b4107d9

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Issues::Milestones, '#create' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:number) { 1 }
  let(:request_path) { "/repos/#{user}/#{repo}/milestones/#{number}" }

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

  after { reset_authentication_for(subject) }

  context "resouce removed" do
    let(:body) { fixture('issues/milestone.json') }
    let(:status) { 201 }

    it "should remove resource successfully" do
      subject.delete user, repo, number
      a_delete(request_path).should have_been_made
    end

    it "should return the resource" do
      milestone = subject.delete user, repo, number
      milestone.should be_a Github::ResponseWrapper
    end

    it "should get the milestone information" do
      milestone = subject.delete user, repo, number
      milestone.title.should == 'v1.0'
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.delete user, repo, number }
  end
end # delete

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/issues/milestones/delete_spec.rb
github_api-0.12.2 spec/github/client/issues/milestones/delete_spec.rb
github_api-0.12.1 spec/github/client/issues/milestones/delete_spec.rb
github_api-0.12.0 spec/github/client/issues/milestones/delete_spec.rb