22 lines
620 B
Ruby
22 lines
620 B
Ruby
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
|