- Split PartiesController into three concerns - Implemented testing for PartiesController and two concerns - Implemented fixes across other files to ensure PartiesController tests pass - Added Favorites factory
11 lines
274 B
Ruby
11 lines
274 B
Ruby
# frozen_string_literal: true
|
|
#
|
|
# Factory for the Favorite model. This factory sets up the associations to User and Party,
|
|
# which are required as per the model definition.
|
|
#
|
|
FactoryBot.define do
|
|
factory :favorite do
|
|
association :user
|
|
association :party
|
|
end
|
|
end
|