Chapters/unit-testing-your-code/step3/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" { MkDir TESTDRIVE:\Part1 MkDir TESTDRIVE:\Part1\Part2 MkDir TESTDRIVE:\Part1\Part3 "sample" | Out-File TESTDRIVE:\Part1\Part2\Part2.txt "sample" | Out-File TESTDRIVE:\Part1\Part3\Part3.txt "sample" | Out-File TESTDRIVE:\Part1\Part1.txt It "reads part2.txt" { Get-FileContents -Path TESTDRIVE:\Part1\Part2 | Should Be "sample" } It "reads part3.txt with fwd slashes" { Get-FileContents -PATH TESTDRIVE:/Part1/Part3 | Should Be "sample" } It "reads 3 files from the pipeline" { $results = "TESTDRIVE:\part1", "TESTDRIVE:\part1\part2", "TESTDRIVE:\part1\part3" | Get-FileContents $results.Count | Should Be 3 } } |