Functions/Get-MSPCompleteCustomerPropertyList.Tests.ps1
describe "BitTitan.Runbooks.MSPComplete/Get-MSPCompleteCustomerPropertyList" -Tag "module", "unit" { # Import the function to test . "$($PSScriptRoot)\Get-MSPCompleteCustomerPropertyList.ps1" it "returns the list of properties" { # Call the function $output = Get-MSPCompleteCustomerPropertyList # Verify the output $output | Should Be @( "CompanyName", "PrimaryDomain", "CountryName", "StateProvinceName", "CityName", "CompanySizeBucket", "IndustryType" ) } } |