~cytrogen/masto-fe

ref: 93d051e47d27b5bd10be922a81d4d4eb6c306330 masto-fe/spec/serializers/rest/encrypted_message_serializer_spec.rb -rw-r--r-- 481 bytes
93d051e4 — Claire Update FEDERATION.md (#26819) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'rails_helper'

describe REST::EncryptedMessageSerializer do
  let(:serialization) do
    JSON.parse(
      ActiveModelSerializers::SerializableResource.new(
        record, serializer: described_class
      ).to_json
    )
  end
  let(:record) { Fabricate(:encrypted_message) }

  describe 'account' do
    it 'returns the associated account' do
      expect(serialization['account_id']).to eq(record.from_account.id.to_s)
    end
  end
end