tests/Get-DbaUserLevelPermission.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 "Command returns proper info" { $results = Get-DbaUserLevelPermission -SqlInstance $script:instance1 -Database tempdb It "returns results" { $results.Count -gt 0 | Should Be $true } foreach ($result in $results) { It "returns only tempdb or server results" { $result.Object -in 'tempdb','SERVER' | Should Be $true } } } } |