Tests/GenXdev.Helpers/EnsureNuGetAssembly.Tests.ps1

###############################################################################
# Part of PowerShell module : GenXdev.Helpers
# Original cmdlet filename : EnsureNuGetAssembly.Tests.ps1
# Original author : René Vaessen / GenXdev
# Version : 3.28.2026
###############################################################################

Pester\BeforeAll {
}

Pester\Describe "EnsureNuGetAssembly" {

    Pester\It "Should install successfully" -Skip:(-not ($Global:AllowLongRunningTests -eq $true)) {
        {
            GenXdev\EnsureNuGetAssembly -AutoConsent -SessionOnly `
                -ErrorAction Stop
        } | Pester\Should -Not -Throw
    }
}