First draft of API to add items to a collection (#37222)

This commit is contained in:
David Roetzel
2025-12-12 14:09:55 +01:00
committed by GitHub
parent 1e67567d8f
commit 3cc4b59b41
5 changed files with 106 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ RSpec.describe REST::CollectionItemSerializer do
let(:collection_item) do
Fabricate(:collection_item,
id: 2342,
state:,
position: 4)
end
@@ -17,6 +18,7 @@ RSpec.describe REST::CollectionItemSerializer do
it 'includes the relevant attributes including the account' do
expect(subject)
.to include(
'id' => '2342',
'account' => an_instance_of(Hash),
'state' => 'accepted',
'position' => 4