Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/Build-Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ on:

permissions:
contents: read # to checkout the repo
statuses: write # to create commit status

jobs:
Build-Docs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ function Get-PSModuleTest {
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ function New-PSModuleTest {
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ function Get-PSModuleTest {
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ function New-PSModuleTest {
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,25 @@
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

"Hello, World!"

.NOTES
Controls:
- i : Enter INSERT mode
- Esc : Enter NORMAL mode
- y : Yank (copy) line
- dd : Delete line
- p : Paste line
- :w : Save file
- :q : Quit
- :q! : Quit without saving
- :wq : Save and quit
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
'PSUseShouldProcessForStateChangingFunctions', '', Scope = 'Function',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
.SYNOPSIS
Performs tests on a module.

.DESCRIPTION
Performs tests on a module.

.EXAMPLE
Test-PSModule -Name 'World'

Expand Down
Loading