PowerShell/test/powershell/Add-Type.Tests.ps1
2016-03-03 13:46:35 -08:00

5 lines
185 B
PowerShell

Describe "Add-Type" {
It -Pending "Should not throw given a simple class definition" {
{ Add-Type -TypeDefinition "public static class foo { }" } | Should Not Throw
}
}