tests/Get-DbaDiskSpace.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 "Disks are properly retreived" { $results = Get-DbaDiskSpace -ComputerName $env:COMPUTERNAME It "returns at least the system drive" { $results.Name -contains "$env:SystemDrive\" | Should Be $true } $results = Get-DbaDiskSpace -ComputerName $env:COMPUTERNAME | Where-Object Name -eq "$env:SystemDrive\" It "has some valid properties" { $results.BlockSize -gt 0 | Should Be $true $results.SizeInGB -gt 0 | Should Be $true } } } |