-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzureLocal.Maproom.psd1
More file actions
28 lines (26 loc) · 1.15 KB
/
Copy pathAzureLocal.Maproom.psd1
File metadata and controls
28 lines (26 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@{
RootModule = 'AzureLocal.Maproom.psm1'
ModuleVersion = '0.2.0'
CompatiblePSEditions = @('Core')
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
Author = 'Azure Local'
CompanyName = 'AzureLocal'
Copyright = '(c) 2026 Azure Local. MIT License.'
Description = 'Platform testing framework for AzureLocal repos. Provides fixture loading, fixture schema validation, IIC canon path resolution, and MAPROOM testing conventions. Consumers import this module to access shared test infrastructure.'
PowerShellVersion = '7.2'
FunctionsToExport = @(
'Import-MaproomFixture',
'Get-IICCanonPath',
'Test-MaproomFixture'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('AzureLocal', 'Testing', 'MAPROOM', 'Pester', 'IIC', 'InfrastructureTesting')
ProjectUri = 'https://github.com/AzureLocal/platform'
LicenseUri = 'https://github.com/AzureLocal/platform/blob/main/LICENSE'
}
}
}