summaryrefslogtreecommitdiff
path: root/spec/uploaders/favicon_uploader_spec.rb
blob: 37deea8ab90a3e7fde67059fe19d653a5e6f0b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'spec_helper'

RSpec.describe FaviconUploader do
  include CarrierWave::Test::Matchers

  let(:uploader) { described_class.new(build_stubbed(:user)) }

  after do
    uploader.remove!
  end

  def upload_fixture(filename)
    fixture_file_upload("spec/fixtures/#{filename}")
  end

  context 'versions' do
    before do
      uploader.store!(upload_fixture('dk.png'))
    end

    it 'has the correct format' do
      expect(uploader.favicon_main).to be_format('png')
    end

    it 'has the correct dimensions' do
      expect(uploader.favicon_main).to have_dimensions(32, 32)
    end
  end
end