Tests/Examples/Parse.PowerShell.examples.tests.ps1


describe 'Parse.PowerShell' {
    it 'Parse.PowerShell Example 1' {
        Get-ChildItem *.ps1 | 
            Parse-PowerShell
    }
    it 'Parse.PowerShell Example 2' {
        Parse-PowerShell "'hello world'"
    }
}