PowerShell/test/powershell/Add-Type.Tests.ps1
Andrew Schwartzmeyer d27ae18ca0 Skip Add-Type.Tests.ps1
This broke and needs to be fixed.
2016-04-01 22:35:00 -07:00

6 lines
175 B
PowerShell

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