diff --git a/src/pester-tests/ConvertTo-Csv.Tests.ps1 b/src/pester-tests/ConvertTo-Csv.Tests.ps1 new file mode 100644 index 000000000..e256bc1b7 --- /dev/null +++ b/src/pester-tests/ConvertTo-Csv.Tests.ps1 @@ -0,0 +1,6 @@ +Describe "ConvertTo-Csv" { + It "Should Be able to be called without error" { + { Get-Process | ConvertTo-Csv } | Should Not Throw + } + +}