Nulah.PowerShell/tests/ModuleTests/Calendar/TestData/CultureCodeTestData.cs
Scott 3547e32b6e tests(calendar): Add calendar render tests (#3)
- updates calendar to support overriding the current day when rendering
- supports current culture when rendering
- renames Calendar to CalendarGenerator
2026-08-05 06:15:53 +00:00

19 lines
No EOL
340 B
C#

namespace ModuleTests.Calendar.TestData;
public class CultureCodeTestData : TestDataEnumerator<string>
{
public CultureCodeTestData()
{
Data =
[
"da-DK",
"en-AU",
"cs-CZ",
"es-PR",
"fr-LU",
"nl-NL",
// Will render unaligned due to the character encoding, here to catch if I fix this later
"te-IN"
];
}
}