Functions/Get-MSPCompleteGroupPropertyList.Tests.ps1

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

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

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

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