PowerShell/test/powershell/Get-PSProvider.Tests.ps1

26 lines
657 B
PowerShell
Raw Normal View History

Describe "Get-PSProvider" {
2015-10-09 22:24:08 +02:00
It "Should be able to call with no parameters without error" {
{ Get-PSProvider } | Should Not Throw
2015-10-09 22:24:08 +02:00
}
It "Should be able to call the filesystem provider" {
{ Get-PSProvider FileSystem } | Should Not Throw
2015-10-09 22:24:08 +02:00
$actual = Get-PSProvider FileSystem
2015-10-09 22:24:08 +02:00
$actual.Name | Should Be "FileSystem"
2015-10-09 22:24:08 +02:00
$actual.Capabilities | Should Be "Filter, ShouldProcess, Credentials"
2015-10-09 22:24:08 +02:00
}
It "Should be able to call a provider with a wildcard expression" {
{ Get-PSProvider File*m } | Should Not Throw
2015-10-09 22:24:08 +02:00
}
It "Should be able to pipe the output" {
$actual = Get-PSProvider
2015-10-09 22:24:08 +02:00
{ $actual | Format-List } | Should Not Throw
2015-10-09 22:24:08 +02:00
}
}