tests/Get-DbaDump.Tests.ps1
$commandname = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "") Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan . "$PSScriptRoot\constants.ps1" # Not sure what is up with appveyor but it does not support this at all if (-not $env:appveyor) { Describe "$commandname Integration Tests" -Tags "IntegrationTests" { Context "Testing if memory dump is present" { BeforeAll { $server = Connect-DbaInstance -SqlInstance $script:instance1 $server.Query("DBCC STACKDUMP") } $results = Get-DbaDump -SqlInstance $script:instance1 It "finds least one dump" { ($results).Count -ge 1 | Should Be $true } } } } |