helpers/Get-Exception-Message.Tests.ps1

1
2
3
4
5
6
7
8
9
10
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"

Describe "Get-Exception-Message" {
    It "does something useful" {
        $true | Should -Be $false
    }
}