Skip to content

Commit 23eb2c9

Browse files
🩹 [Patch]: Remove redundant parameter from tests (#10)
## Description - Remove redundant parameter from tests ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 5fbfb64 commit 23eb2c9

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

tests/Module.Tests.ps1

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
[CmdletBinding()]
2-
Param(
3-
# Path to the module to test.
4-
[Parameter()]
5-
[string] $Path
6-
)
7-
8-
Write-Verbose "Path to the module: [$Path]" -Verbose
9-
10-
Describe 'Module' {
1+
Describe 'Module' {
112
Context "Function: 'Test-PSModuleTemplate'" {
123
It 'Should be able to call the function' {
134
Test-PSModuleTemplate -Name 'World' | Should -Be 'Hello, World!'

0 commit comments

Comments
 (0)