summaryrefslogtreecommitdiff
path: root/spec/views/projects/commits/_commit.html.haml_spec.rb
blob: 4c247361bd7ee4628afcc3f066b76b1d33b32c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

describe 'projects/commits/_commit.html.haml' do
  context 'with a singed commit' do
    let(:project) { create(:project, :repository) }
    let(:repository) { project.repository }
    let(:ref) { GpgHelpers::SIGNED_COMMIT_SHA }
    let(:commit) { repository.commit(ref) }

    it 'does not display a loading spinner for GPG status' do
      render partial: 'projects/commits/commit', locals: {
        project: project,
        ref: ref,
        commit: commit
      }

      within '.gpg-status-box' do
        expect(page).not_to have_css('i.fa.fa-spinner.fa-spin')
      end
    end
  end
end