testing markdown storage and retrieval

This commit is contained in:
2023-12-04 12:27:06 -07:00
parent 69f0b322b2
commit c6ce528ba1
23 changed files with 467 additions and 340 deletions

View File

@@ -5,9 +5,11 @@ public class MonthDetailTests
[Test]
public void TestCanGetMonthName()
{
var detail = new MonthDetail();
var calendarMonth = new CalendarMonth(2022, 2);
detail.Month = calendarMonth;
var detail = new MonthDetail()
{
Month = calendarMonth
};
detail.MonthName.Should().Be("February");
}