~cytrogen/masto-fe

ref: 0cfdd1a401f055c23e308a4b823bd250b1cbb3d3 masto-fe/spec/lib/entity_cache_spec.rb -rw-r--r-- 564 bytes
0cfdd1a4 — Nick Schonning Enable Rubocop Style/StringConcatenation defaults (#23792) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rails_helper'

RSpec.describe EntityCache do
  let(:local_account)  { Fabricate(:account, domain: nil, username: 'alice') }
  let(:remote_account) { Fabricate(:account, domain: 'remote.test', username: 'bob', url: 'https://remote.test/') }

  describe '#emoji' do
    subject { EntityCache.instance.emoji(shortcodes, domain) }

    context 'called with an empty list of shortcodes' do
      let(:shortcodes) { [] }
      let(:domain)     { 'example.org' }

      it 'returns an empty array' do
        expect(subject).to eq []
      end
    end
  end
end