10000 Use new Pester syntax: -Parameter for Pester tests in Microsoft.PowerShell.Management module. by kalgiz · Pull Request #6294 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Use new Pester syntax: -Parameter for Pester tests in Microsoft.PowerShell.Management module. #6294

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Mar 9, 2018
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6e0b7dc
Clean up tests in Microsoft.PowerShell.Management to use -Parameter s…
kalgiz Mar 2, 2018
6fb3282
[Feature] Merge branch 'master' of https://github.com/kalgiz/PowerShe…
kalgiz Mar 2, 2018
a453e49
Add line deleted by mistake.
kalgiz Mar 2, 2018
2645036
[Feature] Resolve conflict
kalgiz Mar 3, 2018
f7e6998
Merge branch 'master' of https://github.com/kalgiz/PowerShell into ne…
kalgiz Mar 6, 2018
8661ef7
Tests syntax correction for module Microsoft.PowerShell.Management
kalgiz Mar 6, 2018
ec1292f
Tests syntax correction for module Microsoft.PowerShell.Management
kalgiz Mar 6, 2018
170da9f
Test correction
kalgiz Mar 6, 2018
b591202
[Feature] Tests correction in module Microsoft.PowerShell.Management.
kalgiz Mar 6, 2018
3113dcb
[Feature] Clear-Content test correction.
kalgiz Mar 7, 2018
57a2688
[Feature] Test correction.
kalgiz Mar 7, 2018
f4955aa
Merge branch 'master' of https://github.com/kalgiz/PowerShell into ne…
kalgiz Mar 7, 2018
030ffa0
[Feature] Microsoft.PowerShell.Management module tests.
kalgiz Mar 7, 2018
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
Prev Previous commit
Next Next commit
[Feature] Clear-Content test correction.
  • Loading branch information
kalgiz committed Mar 7, 2018
commit 3113dcbbc60ee4ccabbe4d000130bdc419e22a80
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Describe "Clear-Content cmdlet tests" -Tags "CI" {
It "the '-Stream' dynamic parameter is visible to get-command in the filesystem" -Skip:(!$IsWindows) {
try {
push-location TESTDRIVE:
(get-command clear-content -stream foo).parameters.keys | Should -Be "stream"
(get-command clear-content -stream foo).parameters.keys -eq "stream" | should be "stream"`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra backtick and didn't change to Should -Be

}
finally {
pop-location
Expand Down
0