Resources/New-ProjectTemplate/PSModuleName.Tests.ps1
$Script:Config = Import-PowerShellDataFile -Path "$PSScriptRoot\config.psd1" Import-Module -Name '.\<ModuleName>' -Force Import-Module -Name '.\Functions.psm1' -Force Describe 'Description Name' { Context 'Context Name #1' { It 'UnProtect-Config works with raw strings' { 'Hello World' | UnProtect-Config | Should Be 'Hello World' } } Context 'Context Name #2' { It '...' { $true | Should Be $true } It '...' { $true | Should Not Be $false } } } |