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

ci_status_helper_spec.rb « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f8d9c672620ce6c64b1c092b7944ca896c1e177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

describe CiStatusHelper do
  include IconsHelper

  let(:success_commit) { double("Ci::Commit", status: 'success') }
  let(:failed_commit) { double("Ci::Commit", status: 'failed') }

  describe 'ci_status_icon' do
    it { expect(helper.ci_status_icon(success_commit)).to include('fa-check') }
    it { expect(helper.ci_status_icon(failed_commit)).to include('fa-close') }
  end
end