0
0
Fork 0

Add coverage for misc serializers (#32781)

This commit is contained in:
Matt Jankowski 2024-11-07 10:37:26 -05:00 committed by GitHub
parent 41227aeb95
commit 870bb06994
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 344 additions and 0 deletions

View file

@ -0,0 +1,27 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe ActivityPub::AddSerializer do
describe '.serializer_for' do
subject { described_class.serializer_for(model, {}) }
context 'with a Status model' do
let(:model) { Status.new }
it { is_expected.to eq(described_class::UriSerializer) }
end
context 'with a FeaturedTag model' do
let(:model) { FeaturedTag.new }
it { is_expected.to eq(ActivityPub::HashtagSerializer) }
end
context 'with an Array' do
let(:model) { [] }
it { is_expected.to eq(ActiveModel::Serializer::CollectionSerializer) }
end
end
end