Change test defaults

This commit is contained in:
Kevin Marquette
2018-07-14 17:19:46 -07:00
parent d26917f9af
commit 0a2b90079d
2 changed files with 5 additions and 5 deletions

View File

@@ -10,11 +10,11 @@ Describe "Public commands have comment-based or external help" -Tags 'Build' {
foreach ($node in $help)
{
Context $node.Name {
It "Should have a Description or Synopsis" -Pending {
It "Should have a Description or Synopsis" {
($node.Description + $node.Synopsis) | Should Not BeNullOrEmpty
}
It "Should have an Example" -Pending {
It "Should have an Example" {
$node.Examples | Should Not BeNullOrEmpty
}
@@ -22,7 +22,7 @@ Describe "Public commands have comment-based or external help" -Tags 'Build' {
{
if ($parameter -notmatch 'WhatIf|Confirm')
{
It "Should have a Description for Parameter [$($parameter.Name)]" -Pending {
It "Should have a Description for Parameter [$($parameter.Name)]" {
$parameter.Description.Text | Should Not BeNullOrEmpty
}
}