File size: 650 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
29
30
31
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

@{
    RootModule = 'HelpersDebugger.psm1'

    ModuleVersion = '1.0'

    GUID = '37a454d7-8acd-40e6-8a2c-43c9d46b1b0c'

    CompanyName = 'Microsoft Corporation'

    Copyright = 'Copyright (c) Microsoft Corporation.'

    Description = 'Helper module for Pester tests that automate the debugger'

    PowerShellVersion = '5.0'

    FunctionsToExport = @(
        'Register-DebuggerHandler'
        'ShouldHaveExtent'
        'ShouldHaveSameExtentAs'
        'Test-Debugger'
        'Unregister-DebuggerHandler'
    )

    CmdletsToExport = @()

    AliasesToExport = @()
}