summaryrefslogtreecommitdiff
path: root/spec/requests/commits_spec.rb
blob: e25799765869bdac86c69107efabede0bf4e25cd (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 eq 200 }
    it { response.body.should include(@commit.sha) }
  end
end