Skip to content

Follow pascal casing on -AbbreviateParameterTypename parameter #715

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Command/NewMarkdownHelpCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public sealed class NewMarkdownHelpCommand : PSCmdlet
public SwitchParameter WithModulePage { get; set; }

[Parameter]
public SwitchParameter AbbreviateParameterTypename { get; set; }
public SwitchParameter AbbreviateParameterTypeName { get; set; }

#endregion

Expand Down Expand Up @@ -139,7 +139,7 @@ protected override void EndProcessing()
ModuleName = cmd.ModuleName is null ? string.Empty : cmd.ModuleName,
ModuleGuid = cmd.Module?.Guid is null ? Guid.Empty : cmd.Module.Guid,
OnlineVersionUrl = HelpUri,
UseFullTypeName = ! AbbreviateParameterTypename
UseFullTypeName = ! AbbreviateParameterTypeName
};

try
Expand Down
2 changes: 1 addition & 1 deletion test/Pester/NewMarkdownHelp.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ Write-Host 'Hello World!'
$expectedParameterNames = "CCC","ddd","WhatIf"
$expectedParameterTypes = "String","Nullable``1[System.Int32]","SwitchParameter"
$expectedSyntax = 'Get-Alpha [[-CCC] <string>] [[-ddd] <int>] [-WhatIf] [<CommonParameters>]'
$file = New-MarkdownCommandHelp -Command (get-command Get-Alpha) -OutputFolder "$TestDrive/alpha" -Force -AbbreviateParameterTypename
$file = New-MarkdownCommandHelp -Command (get-command Get-Alpha) -OutputFolder "$TestDrive/alpha" -Force -AbbreviateParameterTypeName
$ch = Import-MarkdownCommandHelp $file
$ch.Parameters.Name | Should -Be $expectedParameterNames
$ch.Parameters.Type | Should -Be $expectedParameterTypes
Expand Down
Loading