. $PSScriptRoot\..\..\Load-PesterModules.ps1 $here = Split-Path -Parent $MyInvocation.MyCommand.Path $sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.tests\.', '.' $functionPath = Join-Path -Path $here -ChildPath $sut Write-Host "Overriding SUT: $functionPath" Import-Module $functionPath -Force $moduleForMock = "" Describe "Test-AlkamiSREModuleManifest10" { Context "Test valid manifest" { $result = Test-AlkamiSREModuleManifest10 @{ anything = "is unused here" } It "Tested successfully" { $result.success | Should -BeTrue } It "Produced no error messages" { $result.results.Count | Should -Be 0 } } }