mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 16:54:31 +00:00
21 lines
492 B
Ruby
21 lines
492 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe REST::SuggestionSerializer do
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
|
let(:record) do
|
|
AccountSuggestions::Suggestion.new(
|
|
account: account,
|
|
sources: ['SuggestionSource']
|
|
)
|
|
end
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
describe 'account' do
|
|
it 'returns the associated account' do
|
|
expect(serialization['account']['id']).to eq(account.id.to_s)
|
|
end
|
|
end
|
|
end
|