Added test to validate ConvertTo-Csv

This commit is contained in:
Zachary Folwick 2015-10-30 14:43:48 -07:00
parent 2139173dbe
commit 24263a7524

View file

@ -0,0 +1,6 @@
Describe "ConvertTo-Csv" {
It "Should Be able to be called without error" {
{ Get-Process | ConvertTo-Csv } | Should Not Throw
}
}