Skip to content

Instantly share code, notes, and snippets.

View johlju's full-sized avatar
👋
Reviewing, coding and reviewing again

Johan Ljunggren johlju

👋
Reviewing, coding and reviewing again
View GitHub Profile
############################################[   DRAFT   ]#############################################

The following documentation describes the process of integrating a non-DSC PowerShell module called MyModule into the Sampler module framework. Benefits of this approach include an automated build pipeline that can easily leverage custom or community developed tasks.

For technical details, refer to:

@indented-automation
indented-automation / Update-PesterTest.ps1
Last active October 4, 2021 18:17
Migrating to Pester 4.0.7
function Update-PesterTest {
[CmdletBinding()]
param (
[Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[Alias('FullName')]
[String]$Path
)
begin {
$shouldParams = [String[]](Get-Command Should).Parameters.Keys