lib/Pester/3.3.14/Functions/Assertions/ContainExactly.Tests.ps1
Set-StrictMode -Version Latest InModuleScope Pester { Describe "PesterContainExactly" { Context "when testing file contents" { Setup -File "test.txt" "this is line 1`nPester is awesome`nAnd this is Unicode: ☺" It "returns true if the file contains the specified content exactly" { Test-PositiveAssertion (PesterContainExactly "$TestDrive\test.txt" "Pester") } It "returns false if the file does not contain the specified content exactly" { Test-NegativeAssertion (PesterContainExactly "$TestDrive\test.txt" "pESTER") } It "returns true if the file contains the specified Unicode content exactyle" { Test-PositiveAssertion (PesterContainExactly "$TestDrive\test.txt" "☺") } } } } |