2021-03-17 23:41:32 +00:00
|
|
|
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
|
2023-02-20 04:00:48 +00:00
|
|
|
expect(subject).to eq []
|
2021-03-17 23:41:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|