TestingModule.psm1

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#region Script Header
# Thought for the day: It is a rough road that leads to the heights of greatness. - Lucius Annaeus Seneca
# NAME: TestModule.psm1
# AUTHOR: Lars Petersson
# CONTACT: lpetersson@hotmail.com / GitHub: Panzerbjrn / Twitter: LPetersson
# DATE: 2019.01.18
# VERSION: 1.0 - 2019.01.18 - Manifest and Module files created
#
# SYNOPSIS:
# Module for testing constructs.
#
# #DESCRIPTION:
# Module for testing constructs.
#
# REQUIREMENTS:
#
#endregion Script Header

#Requires -Version 3.0

[cmdletbinding()]
param()

Write-Verbose $PSScriptRoot

#Get public and private function definition files.
$Functions  = @( Get-ChildItem -Path $PSScriptRoot\Functions\*.ps1 -ErrorAction SilentlyContinue )
$Helpers = @( Get-ChildItem -Path $PSScriptRoot\Helpers\*.ps1 -ErrorAction SilentlyContinue )

#Dot source the files
Foreach ($Import in @($Functions + $Helpers))
{
    Try
    {
        Write-Verbose "Processing $($Import.Fullname)"
        . $Import.Fullname
    }
    Catch
    {
        Write-Error -Message "Failed to Import function $($Import.Fullname): $_"
    }
}

Export-ModuleMember -Function $Functions.Basename