Skip to content

Commit

Permalink
Update EventValidatorTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
bilimig committed Jun 23, 2024
1 parent 5893f45 commit 973c638
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ public void Validate_WhenSlugIsEmpty_ShouldReturnTrue()
{
var eventDto = new EventDto
{
Name = "Event",
Description = "Description",
StartAt = DateTime.UtcNow,
EndAt = DateTime.UtcNow.AddDays(1),
CreatedAt = DateTime.UtcNow,
UpdatedAt = DateTime.UtcNow,
Status = EventStatus.Approved,
Slug = ""
};

Expand Down

0 comments on commit 973c638

Please sign in to comment.