- adds GitRepoRegistration cmdlets - adds basic tests for GitRepoRegistration implementations - adds initial build project and scripts Refs: #5, #6
19 lines
No EOL
337 B
C#
19 lines
No EOL
337 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"
|
|
];
|
|
}
|
|
} |