2023-02-21 18:55:31 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-17 18:41:32 -05: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
|
2023-06-06 06:58:33 -05:00
|
|
|
subject { described_class.instance.emoji(shortcodes, domain) }
|
2021-03-17 18:41:32 -05:00
|
|
|
|
2023-05-03 22:49:08 -05:00
|
|
|
context 'when called with an empty list of shortcodes' do
|
2021-03-17 18:41:32 -05:00
|
|
|
let(:shortcodes) { [] }
|
|
|
|
let(:domain) { 'example.org' }
|
|
|
|
|
|
|
|
it 'returns an empty array' do
|
2023-02-19 22:00:48 -06:00
|
|
|
expect(subject).to eq []
|
2021-03-17 18:41:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|