From 2328e7f868df739306733326d9f866e9e7e55bad Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Fri, 29 Mar 2019 19:27:09 -0400 Subject: [PATCH] Delete External-Help.Tests.ps1 --- Tests/Public/External-Help.Tests.ps1 | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 Tests/Public/External-Help.Tests.ps1 diff --git a/Tests/Public/External-Help.Tests.ps1 b/Tests/Public/External-Help.Tests.ps1 deleted file mode 100644 index 363c91b..0000000 --- a/Tests/Public/External-Help.Tests.ps1 +++ /dev/null @@ -1,10 +0,0 @@ -$filePath = (Split-Path -Parent $MyInvocation.MyCommand.Path) -replace 'Tests', 'ZertoApiWrapper' -$publicFiles = Get-ChildItem "$filePath" -File - -describe "External Help Present" { - foreach ($file in $publicFiles) { - it "External Help File Defined" { - Get-Content -Path $file.fullName -First 1 | should be "<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>" - } - } -}