psconfluencepublisher/tests/StringHelper.Tests.ps1
2023-08-14 05:10:57 +02:00

21 lines
442 B
PowerShell
Executable file

#!/usr/bin/env pwsh
$ErrorActionPreference = "Stop"
BeforeAll {
Import-Module "$PSScriptRoot/../src/PSConfluencePublisher.psd1"
}
Describe 'Get-StringHash' `
{
Context 'default' `
{
It 'works' `
{
$result = Get-StringHash 'foobar'
$result.Hash | Should -Be (
'C3AB8FF13720E8AD9047DD3946' + `
'6B3C8974E592C2FA383D4A3960714CAEF0C4F2')
}
}
}