Sha256: 614bd142d265d150b0b4ca8c40d4cbe7f60094e7a9b117e7fca937d630c64329

Contents?: true

Size: 1.73 KB

Versions: 14

Compression:

Stored size: 1.73 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::GitData::Tags, '#create' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:sha) { "940bd336248efae0f9ee5bc7b2d5c985887b16ac" }
  let(:request_path) { "/repos/#{user}/#{repo}/git/tags" }

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

  after { reset_authentication_for subject }

  let(:inputs) {
    {
      "tag" => "v0.0.1",
      "message" => "initial version\n",
        "object" => {
          "type" => "commit",
          "sha" => "c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c",
          "url" => "https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c"
        },
      "tagger" => {
        "name" => "Scott Chacon",
        "email" => "schacon@gmail.com",
        "date" => "2011-06-17T14:53:35-07:00"
      },
      'unrelated' => 'giberrish'
    }
  }

  context "resouce created" do
    let(:body) { fixture('git_data/tag.json') }
    let(:status) { 201 }

    it { expect { subject.create user }.to raise_error(ArgumentError) }

    it "should create resource successfully" do
      subject.create user, repo, inputs
      a_post(request_path).with(inputs).should have_been_made
    end

    it "should return the resource" do
      tag = subject.create user, repo, inputs
      tag.should be_a Github::ResponseWrapper
    end

    it "should get the tag information" do
      tag = subject.create user, repo, inputs
      tag.sha.should == sha
    end
  end

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

end # create

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/git_data/tags/create_spec.rb
github_api-0.11.2 spec/github/git_data/tags/create_spec.rb
github_api-0.11.1 spec/github/git_data/tags/create_spec.rb
github_api-0.11.0 spec/github/git_data/tags/create_spec.rb
github_api-0.10.2 spec/github/git_data/tags/create_spec.rb
github_api-0.10.1 spec/github/git_data/tags/create_spec.rb
github_api-0.10.0 spec/github/git_data/tags/create_spec.rb
github_api-0.9.7 spec/github/git_data/tags/create_spec.rb
github_api-0.9.6 spec/github/git_data/tags/create_spec.rb
github_api-0.9.5 spec/github/git_data/tags/create_spec.rb
github_api-0.9.4 spec/github/git_data/tags/create_spec.rb
github_api-0.9.3 spec/github/git_data/tags/create_spec.rb
github_api-0.9.2 spec/github/git_data/tags/create_spec.rb
github_api-0.9.1 spec/github/git_data/tags/create_spec.rb