tests/Get-DbaAvailableCollation.Tests.ps1
$commandname = $MyInvocation.MyCommand.Name.Replace(".ps1", "") Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan . "$PSScriptRoot\constants.ps1" Describe "$commandname Integration Tests" -Tags "IntegrationTests" { Context "Available Collations" { $results = Get-DbaAvailableCollation -SqlInstance $script:instance2 It "finds a collation that matches Slovenian" { ($results.Name -match 'Slovenian').Count -gt 10 | Should Be $true } } } |