12 lines
250 B
Ruby
12 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
|