13 lines
250 B
Ruby
13 lines
250 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :notification do
|
||
|
type_notif 'commentaire'
|
||
|
liste []
|
||
|
|
||
|
after(:create) do |notification, _evaluator|
|
||
|
unless notification.dossier
|
||
|
notification.dossier = create :dossier
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|