Tests/GenXdev.Software/EnsureGithubCLIInstalled.Tests.ps1
|
############################################################################### # Part of PowerShell module : GenXdev.Software # Original cmdlet filename : EnsureGithubCLIInstalled.Tests.ps1 # Original author : René Vaessen / GenXdev # Version : 3.28.2026 ############################################################################### Pester\BeforeAll { } Pester\Describe "EnsureGithubCLIInstalled" { Pester\It "Should install successfully" -Skip:(-not ($Global:AllowLongRunningTests -eq $true)) { { GenXdev\EnsureGithubCLIInstalled -AutoConsent -SessionOnly ` -ErrorAction Stop } | Pester\Should -Not -Throw } } |