Sha256: 523e061a2d89cc0b3cf4ddf68fe850ae529c7ec97f64f0bb7ec3366f902a06f0

Contents?: true

Size: 1.65 KB

Versions: 10

Compression:

Stored size: 1.65 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 "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 Hashie::Mash
    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

10 entries across 10 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/git_data/tags/create_spec.rb
github_api-0.8.10 spec/github/git_data/tags/create_spec.rb
github_api-0.8.9 spec/github/git_data/tags/create_spec.rb
github_api-0.8.8 spec/github/git_data/tags/create_spec.rb
github_api-0.8.7 spec/github/git_data/tags/create_spec.rb
github_api-0.8.6 spec/github/git_data/tags/create_spec.rb
github_api-0.8.5 spec/github/git_data/tags/create_spec.rb
github_api-0.8.4 spec/github/git_data/tags/create_spec.rb
github_api-0.8.3 spec/github/git_data/tags/create_spec.rb
github_api-0.8.2 spec/github/git_data/tags/create_spec.rb