-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathTestModule.psd1
More file actions
20 lines (20 loc) · 691 Bytes
/
TestModule.psd1
File metadata and controls
20 lines (20 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@{
RootModule = 'TestModule.psm1'
ModuleVersion = '0.1.0'
GUID = '9dc6c759-5ea0-4d9e-9392-947de76810f2'
Author = 'PowerShellBuild Contributors'
CompanyName = 'Community'
Copyright = '(c) PowerShellBuild Contributors. All rights reserved.'
Description = 'Minimal shared fixture module for integration tests.'
PowerShellVersion = '3.0'
RequiredModules = @()
FunctionsToExport = @('Get-TestFixtureMessage')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('tests','fixtures')
}
}
}