Skip to content

Instantly share code, notes, and snippets.

@rikwatson
Created April 1, 2019 13:18
Show Gist options
  • Save rikwatson/5392201185faf37f77d5346ed6fc1e42 to your computer and use it in GitHub Desktop.
Save rikwatson/5392201185faf37f77d5346ed6fc1e42 to your computer and use it in GitHub Desktop.
Pester Powershell Example of structure
Describe "Description Name" `
{
Context "Context Name #1" `
{
It "..." { ... }
}
Context "Context Name #2" `
{
It "..." { ... }
It "..." { ... }
It "..." { ... }
}
}
@rikwatson
Copy link
Author

Note back ticks (`) so parenthesis can start on new line.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment