Skip to content

Commit

Permalink
Update Microsoft365DSC.SCRetentionCompliancePolicy.Tests.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Nov 11, 2022
1 parent 5cb8d28 commit 589fe20
Showing 1 changed file with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,24 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
Mock -CommandName Get-RetentionCompliancePolicy -MockWith {
return @{
Name = "TestPolicy"
ExchangeLocation = "https://contoso.sharepoint.com/sites/demo"
ExchangeLocation = @{
DisplayName = "https://contoso.sharepoint.com/sites/demo"
}
ExchangeLocationException = "https://contoso.sharepoint.com"
OneDriveLocation = "https://contoso.sharepoint.com/sites/demo"
OneDriveLocation = @{
DisplayName = "https://contoso.sharepoint.com/sites/demo"
}
OneDriveLocationException = "https://contoso.com"
PublicFolderLocation = "\\contoso\PF"
SkypeLocation = "https://contoso.sharepoint.com/sites/demo"
PublicFolderLocation = @{
DisplayName = "\\contoso\PF"
}
SkypeLocation = @{
DisplayName = "https://contoso.sharepoint.com/sites/demo"
}
SkypeLocationException = "https://contoso.sharepoint.com/"
SharePointLocation = "https://contoso.sharepoint.com/sites/demo"
SharePointLocation = @{
DisplayName = "https://contoso.sharepoint.com/sites/demo"
}
SharePointLocationException = "https://contoso.com"
}
}
Expand Down

0 comments on commit 589fe20

Please sign in to comment.