tests/Remove-DbaClientAlias.Tests.ps1

$commandname = $MyInvocation.MyCommand.Name.Replace(".ps1", "")
Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan
. "$PSScriptRoot\constants.ps1"

Describe "$commandname Integration Tests" -Tags "IntegrationTests" {
    BeforeAll {
        $null = New-DbaClientAlias -ServerName sql2016 -Alias dbatoolscialias-new -Verbose:$false
    }
    Context "adds the alias" {
        $results = Remove-DbaClientAlias -Alias dbatoolscialias-new -Verbose:$false
        It "alias is not included in results" {
            $results.AliasName -notcontains 'dbatoolscialias-new' | Should Be $true
        }
    }
}