Skip to content

Commit

Permalink
Restore HavePetsFood to Test Object
Browse files Browse the repository at this point in the history
  • Loading branch information
TimA authored and TimA committed Mar 13, 2024
1 parent 8e11705 commit 8238ab3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ private static NeedsAssessment CreateNeedsAssessment()
.RuleFor(o => o.CanProvideIncidentals, f => f.Random.NullableBool())
.RuleFor(o => o.CanProvideLodging, f => f.Random.NullableBool())
.RuleFor(o => o.CanProvideTransportation, f => f.Random.NullableBool())
.RuleFor(o => o.HavePetsFood, f => f.Random.NullableBool())
.RuleFor(o => o.Insurance, f => f.Random.Enum<InsuranceOption>())
.RuleFor(o => o.Type, f => f.Random.Enum<NeedsAssessmentType>())
.RuleFor(o => o.Notes, f => f.Make(f.Random.Int(0, 20), CreateNote))
Expand Down

0 comments on commit 8238ab3

Please sign in to comment.