PowerShell/test/powershell/New-Alias.Tests.ps1

35 lines
972 B
PowerShell
Raw Normal View History

Describe "New-Alias" {
2015-10-22 19:55:58 +02:00
It "Should be able to be called using the name and value parameters without error" {
{ New-Alias -Name testAlias -Value 100 } | Should Not Throw
2015-10-22 19:55:58 +02:00
}
It "Should have the same output between the alias and the original cmdlet" {
New-Alias -Name testAlias -Value Get-Process
2015-10-22 19:55:58 +02:00
$aliasId = $(testAlias).Id
$cmdletId = $(Get-Process).Id
foreach ($IdNumber in $aliasId)
{
$aliasId[$IdNumber] | Should Be $cmdletId[$IdNumber]
}
2015-10-22 19:55:58 +02:00
}
It "Should be able to call the New-Alias cmdlet using the nal alias without error" {
{ nal -Name testAlias -Value 100 } | Should Not Throw
2015-10-22 19:55:58 +02:00
}
It "Should have the same output between the nal alias and the New-Alias cmdlet" {
nal -Name testAlias -Value Get-Process
2015-10-22 19:55:58 +02:00
New-Alias -Name testalias2 -Value Get-Process
2015-10-22 19:55:58 +02:00
$aliasData = $(testAlias).Id
$cmdletData = $(testAlias2).Id
foreach ($IdNumber in $aliasData)
{
$aliasData[$IdNumber] | Should Be $cmdletData[$IdNumber]
}
2015-10-22 19:55:58 +02:00
}
}