chore(schema): create dossier_corrections

This commit is contained in:
Colin Darie 2023-02-28 15:06:39 +01:00
parent 5d245fee7d
commit 2c79ca94f5
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
8 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,11 @@
FactoryBot.define do
factory :dossier_resolution do
dossier
commentaire
resolved_at { nil }
trait :resolved do
resolved_at { Time.zone.now }
end
end
end

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe DossierResolution, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end