summaryrefslogtreecommitdiff
path: root/spec/helpers/ci_status_helper_spec.rb
blob: 45199d0f09da61489db4f2d3ed95452faa654605 (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::Pipeline", status: 'success') }
  let(:failed_commit) { double("Ci::Pipeline", status: 'failed') }

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