mastodon/spec/serializers/rest/suggestion_serializer_spec.rb

21 lines
489 B
Ruby
Raw Normal View History

2023-03-10 05:12:51 -06:00
# frozen_string_literal: true
require 'rails_helper'
describe REST::SuggestionSerializer do
let(:serialization) { serialized_record_json(record, described_class) }
2023-03-10 05:12:51 -06:00
let(:record) do
AccountSuggestions::Suggestion.new(
account: account,
source: '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