glitch-soc/spec/serializers/activitypub/device_serializer_spec.rb

15 lines
345 B
Ruby
Raw Normal View History

2023-03-10 06:12:51 -05:00
# frozen_string_literal: true
require 'rails_helper'
describe ActivityPub::DeviceSerializer do
let(:serialization) { serialized_record_json(record, described_class) }
2023-03-10 06:12:51 -05:00
let(:record) { Fabricate(:device) }
describe 'type' do
it 'returns correct serialized type' do
expect(serialization['type']).to eq('Device')
end
end
end