diff --git a/Tests/Public/Export-ZertoVpg.Tests.ps1 b/Tests/Public/Export-ZertoVpg.Tests.ps1 index 5f5afd9..ff084e2 100644 --- a/Tests/Public/Export-ZertoVpg.Tests.ps1 +++ b/Tests/Public/Export-ZertoVpg.Tests.ps1 @@ -48,6 +48,14 @@ Describe $file.BaseName -Tag 'Unit' { } Context "$($file.BaseName)::Function Unit Tests" { + Mock -ModuleName ZertoApiWrapper -CommandName Invoke-ZertoRestRequest { + } + + $outputPath = "TestDrive:\" + + it "Should Exist" { + $outputPath | Should -Exist + } } }