about summary refs log tree commit diff
path: root/spec/serializers/activitypub/one_time_key_serializer_spec.rb
blob: 6fe1f06185e6f6921eb4d6a633a1876b403d3e12 (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 ActivityPub::OneTimeKeySerializer do
  let(:serialization) do
    JSON.parse(
      ActiveModelSerializers::SerializableResource.new(
        record, serializer: described_class
      ).to_json
    )
  end
  let(:record) { Fabricate(:one_time_key) }

  describe 'type' do
    it 'returns correct serialized type' do
      expect(serialization['type']).to eq('Curve25519Key')
    end
  end
end