26 lines
809 B
PowerShell
26 lines
809 B
PowerShell
Describe "Import-Alias" {
|
|
$pesteraliasfile = Join-Path -Path (Join-Path $PSScriptRoot -ChildPath assets) -ChildPath pesteralias.txt
|
|
|
|
Context "Validate ability to import alias file" {
|
|
|
|
It "Should be able to import an alias file successfully" {
|
|
{ Import-Alias $pesteraliasfile } | Should Not throw
|
|
}
|
|
|
|
It "Should be able to import file via the Import-Alias alias of ipal" {
|
|
{ ipal $pesteraliasfile } | Should Not throw
|
|
}
|
|
|
|
It "Should be able to import an alias file and perform imported aliased echo cmd" {
|
|
(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)
|
|
(pesterecho pestertesting) | Should be "pestertesting"
|
|
}
|
|
|
|
}
|
|
}
|