Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commits_spec.rb « requests « ci « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9d8366c41ad5f6fa9ffdfa6e1a13602115fb510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spec_helper'

describe "Commits" do
  before do
    @project = FactoryGirl.create :project
    @commit = FactoryGirl.create :commit, project: @project
  end

  describe "GET /:project/refs/:ref_name/commits/:id/status.json" do
    before do
      get status_project_ref_commit_path(@project, @commit.ref, @commit.sha), format: :json
    end

    it { response.status.should == 200 }
    it { response.body.should include(@commit.sha) }
  end
end