mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 16:54:31 +00:00
15 lines
351 B
Ruby
15 lines
351 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe ActivityPub::DeviceSerializer do
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
|
let(:record) { Fabricate(:device) }
|
|
|
|
describe 'type' do
|
|
it 'returns correct serialized type' do
|
|
expect(serialization['type']).to eq('Device')
|
|
end
|
|
end
|
|
end
|