diff options
author | Alexis Reigel <mail@koffeinfrei.org> | 2017-02-07 16:06:27 +0100 |
---|---|---|
committer | Alexis Reigel <mail@koffeinfrei.org> | 2017-02-22 12:22:52 +0100 |
commit | 0df104a389438665df2c7248ae022cdbb767f838 (patch) | |
tree | 7a63da8cba5f7916c96a5d90e34a7ac777cea31c /spec | |
parent | f0766fdefaeadcc526d6a87e29b65f5bf7b26318 (diff) | |
download | gitlab-ce-0df104a389438665df2c7248ae022cdbb767f838.tar.gz |
use custom brand logo in pipeline mails
Diffstat (limited to 'spec')
-rw-r--r-- | spec/helpers/emails_helper_spec.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/helpers/emails_helper_spec.rb b/spec/helpers/emails_helper_spec.rb index 3223556e1d3..b9519e387eb 100644 --- a/spec/helpers/emails_helper_spec.rb +++ b/spec/helpers/emails_helper_spec.rb @@ -43,4 +43,36 @@ describe EmailsHelper do end end end + + describe '#header_logo' do + context 'there is a brand item with a logo' do + it 'returns the brand header logo' do + appearance = create :appearance, header_logo: fixture_file_upload( + Rails.root.join('spec/fixtures/dk.png') + ) + + expect(header_logo).to eq( + %{<img src="/uploads/appearance/header_logo/#{appearance.id}/dk.png" alt="Dk" />} + ) + end + end + + context 'there is a brand item without a logo' do + it 'returns the default header logo' do + create :appearance, header_logo: nil + + expect(header_logo).to eq( + %{<img alt="GitLab" src="/images/mailers/gitlab_header_logo.gif" width="55" height="50" />} + ) + end + end + + context 'there is no brand item' do + it 'returns the default header logo' do + expect(header_logo).to eq( + %{<img alt="GitLab" src="/images/mailers/gitlab_header_logo.gif" width="55" height="50" />} + ) + end + end + end end |