1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-03 01:08:23 +09:00
mastodon/spec/serializers/activitypub/device_serializer_spec.rb

15 lines
345 B
Ruby
Raw Permalink Normal View History

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