You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for dot sourcing with spaces in path
Result
. C:\Users\taavast3\OneDrive\UserGroups\Presentations\2019.06.PsConf2019\Learn classes with Class\Code\02.CheatingTDD.Class.Polymorphism.ps1
Describe '[Animal]-[Constructors]'{
}# end of Describe block
Describe '[Cat]-[Constructors]'{
It '[Cat]-[Constructor]([String]Name) should Not Throw' {
# -- Arrange
[String]$Name=''# -- Act# -- Assert
{[Cat]::New($Name)} | Should Not Throw
}# end of it block
Should be
."C:\Users\taavast3\OneDrive\UserGroups\Presentations\2019.06.PsConf2019\Learn classes with Class\Code\02.CheatingTDD.Class.Polymorphism.ps1"
Describe '[Animal]-[Constructors]'{
}# end of Describe block
Describe '[Cat]-[Constructors]'{
It '[Cat]-[Constructor]([String]Name) should Not Throw' {
# -- Arrange
[String]$Name=''# -- Act# -- Assert
{[Cat]::New($Name)} | Should Not Throw
}# end of it block
The text was updated successfully, but these errors were encountered:
Add support for dot sourcing with spaces in path
Result
Should be
The text was updated successfully, but these errors were encountered: