我正在使用Python 2.7并安装了mock 2.0.0。
有没有办法获得reset_mock(return_value=True)
所描述的$sep = '@'
Write-Output ($sep*5)
$names = "Hello World", "me too", "goodbye"
$names | % {
Write-Output ($sep*($_.Length))
Write-Output $_
Write-Output ($sep*($_.Length))
}
的功能?