Skip to content

Instantly share code, notes, and snippets.

@HowardvanRooijen
Created February 21, 2013 20:52
Show Gist options
  • Save HowardvanRooijen/5008142 to your computer and use it in GitHub Desktop.
Save HowardvanRooijen/5008142 to your computer and use it in GitHub Desktop.
$ConnectionDetails = @{
ServerUrl = "teamcity.codebetter.com"
Credential = New-Object System.Management.Automation.PSCredential("teamcitysharpuser", (ConvertTo-SecureString "qwerty" -asplaintext -force))
}
Describe "Get-AllAgents" {
$parameters = @{ ConnectionDetails = $ConnectionDetails }
$result = Get-AllAgents @parameters
It "should return multiple agents" {
$result.Count.should.have_count_greater_than(1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment