Tests/Get-NodeIP.Tests.ps1
BeforeAll { . $PSScriptRoot\_InitializeTests.ps1 . $ProjectRoot\SRC\private\Get-NodeIP.ps1 } Describe Get-NodeIP { It "Should return Host IP Address" { Get-NodeIP -Hostname localhost | Should -Be '127.0.0.1' } } |