1

我正在尝试围绕一些 PowerShell 代码包装一个文本夹具,该代码扩展了一个具有属性的对象。我收到一个似乎是由 Pester 引起的错误。我在下面有一个人为的例子,它显示了我正在尝试做的事情。

有没有人成功地为使用 Pester 属性的函数编写测试?

我得到的错误:

Describing Get-PropertyOfItem
Select-Object : Property cannot be processed because property "should" already exists.
At C:\Repos\ClinicientOps\clinicientops\General\Functions\Get-PropertyOfItem.ps1:4 char:11
+     $files | Select-Object *, @{Name = "TestProperty"; Expression = { $dir.Length}} ...
+              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (Windows:PSObject) [Select-Object], PSArgumentException
    + FullyQualifiedErrorId : AlreadyExistingUserSpecifiedPropertyNoExpand,Microsoft.PowerShell.Commands.SelectObjectCommand

我的功能:

function Get-PropertyOfItem {
    $dir = "C:\"
    $files = Get-ChildItem $dir
    $files | Select-Object *, @{Name = "TestProperty"; Expression = { $dir.Length}} -Last 1
}

我的测试代码:

$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
. "$here\$sut"

Describe "Get-PropertyOfItem" {

    It "does something useful" {

        $prop = Get-PropertyOfItem
        $prop.TestProperty.should.be(3)
    }
}
4

2 回答 2

1

这似乎是他们在第 2 版中调查的一个限制。

于 2012-11-30T20:04:54.697 回答
1

Pester 2.0.1 版已悄然发布。你必须重写你的期望

$prop.TestProperty | Should Be 3

这也意味着您的所有其他测试都需要迁移到此管道形式的期望语法。

于 2013-02-03T15:24:39.340 回答