12 lines
247 B
Ruby
12 lines
247 B
Ruby
FactoryBot.define do
|
|
factory :notification do
|
|
type_notif 'commentaire'
|
|
liste []
|
|
|
|
before(:create) do |notification, _evaluator|
|
|
if !notification.dossier
|
|
notification.dossier = create :dossier
|
|
end
|
|
end
|
|
end
|
|
end
|