2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-18 08:41:32 +09: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) }
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when called with an empty list of shortcodes' do
|
2021-03-18 08:41:32 +09:00
|
|
|
let(:shortcodes) { [] }
|
|
|
|
let(:domain) { 'example.org' }
|
|
|
|
|
|
|
|
it 'returns an empty array' do
|
2023-02-20 13:00:48 +09:00
|
|
|
expect(subject).to eq []
|
2021-03-18 08:41:32 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|