ps/Modules/Alkami.PowerShell.Configuration/Public/Test-AlkamiInstallerManifest10.tests.ps1
2023-05-30 22:51:22 -07:00

24 lines
718 B
PowerShell

. $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-AlkamiInstallerManifest10" {
Context "Test valid manifest" {
$result = Test-AlkamiInstallerManifest10 @{
anything = "is unused here"
}
It "Tested successfully" {
$result.success | Should -BeTrue
}
It "Produced no error messages" {
$result.results.Count | Should -Be 0
}
}
}