about summary refs log tree commit diff
path: root/spec/serializers/rest/keys/query_result_serializer_spec.rb
blob: 983780ae98fb6a10a92982edd9ff0a066b31df60 (plain) (blame)
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::Keys::QueryResultSerializer do
  let(:serialization) do
    JSON.parse(
      ActiveModelSerializers::SerializableResource.new(
        record, serializer: described_class
      ).to_json
    )
  end
  let(:record) { Keys::QueryService::Result.new(Account.new(id: 123), []) }

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