summaryrefslogtreecommitdiff
path: root/spec/views/projects/commit/_commit_box.html.haml_spec.rb
blob: 16bf0698c4be4b82646463aba56ac8a74757a458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'spec_helper'

describe 'projects/commit/_commit_box.html.haml' do
  include Devise::Test::ControllerHelpers

  let(:project) { create(:project) }

  before do
    assign(:project, project)
    assign(:commit, project.commit)
  end

  it 'shows the commit SHA' do
    render

    expect(rendered).to have_text("Commit #{Commit.truncate_sha(project.commit.sha)}")
  end

  it 'shows the last pipeline that ran for the commit' do
    create(:ci_pipeline, project: project, sha: project.commit.id, status: 'success')
    create(:ci_pipeline, project: project, sha: project.commit.id, status: 'canceled')
    third_pipeline = create(:ci_pipeline, project: project, sha: project.commit.id, status: 'failed')

    render

    expect(rendered).to have_text("Pipeline ##{third_pipeline.id} for #{Commit.truncate_sha(project.commit.sha)} failed")
  end
end