Do we need Enable-RunspaceDebug.Tests.ps1 file?
https://github.com/PowerShell/PowerShell/blob/master/test/powershell/Modules/Microsoft.PowerShell.Utility/Enable-RunspaceDebug.Tests.ps1 was added as part of #8923, then in #10338 the functionality it tests was removed.
When run, its tests are skipped because Microsoft.PowerShell.Utility.PSDebugRunspaceWithBreakpoints experimental feature doesn't exist, or else the tests would fail.
|
if (!$FeatureEnabled) { |
|
Write-Verbose "Test Suite Skipped. The test suite requires the experimental feature 'Microsoft.PowerShell.Utility.PSDebugRunspaceWithBreakpoints' to be enabled." -Verbose |
|
$originalDefaultParameterValues = $PSDefaultParameterValues.Clone() |
|
$PSDefaultParameterValues["it:skip"] = $true |
|
return |
|
} |
Should we remove the file?
Steps to reproduce
Expected behavior
Actual behavior
Environment data
Do we need
Enable-RunspaceDebug.Tests.ps1file?https://github.com/PowerShell/PowerShell/blob/master/test/powershell/Modules/Microsoft.PowerShell.Utility/Enable-RunspaceDebug.Tests.ps1 was added as part of #8923, then in #10338 the functionality it tests was removed.
When run, its tests are skipped because
Microsoft.PowerShell.Utility.PSDebugRunspaceWithBreakpointsexperimental feature doesn't exist, or else the tests would fail.PowerShell/test/powershell/Modules/Microsoft.PowerShell.Utility/Enable-RunspaceDebug.Tests.ps1
Lines 9 to 14 in 904e551
Should we remove the file?
Steps to reproduce
Expected behavior
Actual behavior
Environment data