tests/Test-DbaConnectionAuthScheme.Tests.ps1
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1","") Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan . "$PSScriptRoot\constants.ps1" Describe "$commandname Integration Tests" -Tags "IntegrationTests" { Context "returns the proper transport" { $results = Test-DbaConnectionAuthScheme -SqlInstance $script:instance1 It "returns ntlm auth scheme" { $results.AuthScheme | Should Be 'ntlm' } } } |