Files
Portfolio-Codex/tests/router.test.ps1
2026-02-04 17:06:28 +01:00

15 lines
330 B
PowerShell

$ErrorActionPreference = 'Stop'
function Assert-True {
param(
[bool]$Condition,
[string]$Message
)
if (-not $Condition) { throw $Message }
}
Assert-True (Test-Path '.htaccess') 'Missing .htaccess'
$ht = Get-Content -Raw '.htaccess'
Assert-True ($ht -match 'RewriteRule') 'Missing RewriteRule in .htaccess'
'OK'