about summary refs log tree commit diff
path: root/spec/support/examples/models/concerns/account_avatar.rb
blob: f2a8a2459c57faf6553fec0d30172c849d6cf97b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

shared_examples 'AccountAvatar' do |fabricator|
  describe 'static avatars' do
    describe 'when GIF' do
      it 'creates a png static style' do
        account = Fabricate(fabricator, avatar: attachment_fixture('avatar.gif'))
        expect(account.avatar_static_url).to_not eq account.avatar_original_url
      end
    end

    describe 'when non-GIF' do
      it 'does not create extra static style' do
        account = Fabricate(fabricator, avatar: attachment_fixture('attachment.jpg'))
        expect(account.avatar_static_url).to eq account.avatar_original_url
      end
    end
  end
end