Chapters/unit-testing-your-code/step1/Get-FileContents.Tests.ps1
$here = Split-Path -Parent $MyInvocation.MyCommand.Path $sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' . "$here\$sut" Describe "Get-FileContents" { It "does something useful" { $true | Should Be $false } } |