2023-03-10 22:12:51 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe ActivityPub::UndoLikeSerializer do
|
2023-11-08 02:20:24 +11:00
|
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
2023-03-10 22:12:51 +11:00
|
|
|
let(:record) { Fabricate(:favourite) }
|
|
|
|
|
|
|
|
describe 'type' do
|
|
|
|
it 'returns correct serialized type' do
|
|
|
|
expect(serialization['type']).to eq('Undo')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|