Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Apr 14, 2024
1 parent f0edbe2 commit 4df3674
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions tests/src/public/Get-PSModuleTest.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Requires -Modules Utilities

function Get-PSModuleTestq {
function Get-PSModuleTest {
<#
.SYNOPSIS
Performs tests on a module.
Expand All @@ -18,23 +18,3 @@ function Get-PSModuleTestq {
)
Write-Output "Hello, $Name!"
}

filter Get-PSModuleTestfilter {
<#
.SYNOPSIS
Performs tests on a module.
.EXAMPLE
Test-PSModule -Name 'World'
"Hello, World!"
#>
[CmdletBinding()]
param (
# Name of the person to greet.
[Parameter(Mandatory)]
[string] $Name
)
$optionalName = $Name -ne '' ? $Name : 'World'
Write-Output "Hello, $Name!" -Verbose | Out-Null
}

0 comments on commit 4df3674

Please sign in to comment.