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.
14 lines
386 B
14 lines
386 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe REST::EncryptedMessageSerializer do |
|
let(:serialization) { serialized_record_json(record, described_class) } |
|
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
|
|
|