Functions/Get-MSPCompleteGroupExtendedPropertyList.Tests.ps1

describe "BitTitan.Runbooks.MSPComplete/Get-MSPCompleteGroupExtendedPropertyList" -Tag "module", "unit" {

    # Import the function to test
    . "$($PSScriptRoot)\Get-MSPCompleteGroupExtendedPropertyList.ps1"

    it "returns the list of properties" {
        # Call the function
        $output = Get-MSPCompleteGroupExtendedPropertyList

        # Verify the output
        $output | Should Be @(
            "PrimaryEmailAddress"
        )
    }
}