SSPowerShellBoilerplate/test/Module.T.ps1
$moduleName = '<%=$PLASTER_PARAM_ModuleName%>' $manifestPath = "$PSScriptRoot\..\Release\$moduleName\*\$moduleName.psd1" Describe 'module manifest values' { It 'can retrieve manfiest data' { $script:manifest = Test-ModuleManifest $manifestPath } It 'has the correct name' { $script:manifest.Name | Should Be $moduleName } It 'has the correct guid' { $script:manifest.Guid | Should Be '<%=$PLASTER_Guid1%>' } } |