mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-17 04:32:22 +00:00
15 lines
347 B
Ruby
15 lines
347 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe REST::Keys::DeviceSerializer do
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
|
let(:record) { Device.new(name: 'Device name') }
|
|
|
|
describe 'name' do
|
|
it 'returns the name' do
|
|
expect(serialization['name']).to eq('Device name')
|
|
end
|
|
end
|
|
end
|