You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
560 B
20 lines
560 B
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
|
|
is_expected.to eq []
|
|
end
|
|
end
|
|
end
|
|
end
|