PowerShell - Scripting Best Practices
What will be the output when running this Pester test script?
Describe 'Math Tests' {
It 'checks addition' {
(2 + 2) | Should Be 4
}
It 'checks subtraction' {
(5 - 3) | Should Be 1
}
}