quick-test.ps1

# Quick test of the module

Write-Host "Testing Bluscream-BuildTools module..." -ForegroundColor Cyan

try {
    # Import module
    Import-Module "Bluscream-BuildTools" -Force
    Write-Host "✓ Module imported successfully" -ForegroundColor Green
    
    # Test a simple function
    $Functions = Get-Command -Module Bluscream-BuildTools
    Write-Host "✓ Found $($Functions.Count) functions" -ForegroundColor Green
    
    # Test dependency status
    Show-DependencyStatus -Tools @('git', 'gh')
    Write-Host "✓ Dependency management working" -ForegroundColor Green
    
    Write-Host "Module is ready for publishing!" -ForegroundColor Green
}
catch {
    Write-Host "Error: $_" -ForegroundColor Red
}