donphan/spec/lib/entity_cache_spec.rb

22 lines
604 B
Ruby
Raw Normal View History

2023-07-06 11:23:07 +01:00
# frozen_string_literal: true
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-07-06 11:23:07 +01:00
subject { described_class.instance.emoji(shortcodes, domain) }
2023-07-06 11:23:07 +01:00
context 'when called with an empty list of shortcodes' do
let(:shortcodes) { [] }
let(:domain) { 'example.org' }
it 'returns an empty array' do
2023-07-06 11:23:07 +01:00
expect(subject).to eq []
end
end
end
end