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

26 lines
809 B
PowerShell
Raw Normal View History

2015-11-19 07:21:35 +01:00
Describe "Import-Alias" {
$pesteraliasfile = Join-Path -Path (Join-Path $PSScriptRoot -ChildPath assets) -ChildPath pesteralias.txt
2015-11-19 07:21:35 +01:00
Context "Validate ability to import alias file" {
It "Should be able to import an alias file successfully" {
{ Import-Alias $pesteraliasfile } | Should Not throw
2015-11-19 07:21:35 +01:00
}
It "Should be able to import file via the Import-Alias alias of ipal" {
{ ipal $pesteraliasfile } | Should Not throw
}
2015-11-19 07:21:35 +01:00
It "Should be able to import an alias file and perform imported aliased echo cmd" {
2015-11-19 07:21:35 +01:00
(Import-Alias $pesteraliasfile)
(pesterecho pestertesting) | Should Be "pestertesting"
}
It "Should be able to use ipal alias to import an alias file and perform cmd" {
(ipal $pesteraliasfile)
2015-11-19 07:21:35 +01:00
(pesterecho pestertesting) | Should be "pestertesting"
}
2015-11-19 07:21:35 +01:00
}
}