Implements spec 425 with Entra certified compare pack support, coverage, guards, evaluator, fixtures, and tests. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #492
15 lines
572 B
PHP
15 lines
572 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('Spec425 runtime changes do not introduce tenant id as Coverage v2 ownership truth', function (): void {
|
|
foreach ([
|
|
app_path('Services/TenantConfiguration/EntraCertifiedComparePackEvaluator.php'),
|
|
app_path('Services/TenantConfiguration/EntraCertifiedComparePackResult.php'),
|
|
app_path('Services/TenantConfiguration/SupportedScopeResolver.php'),
|
|
app_path('Services/TenantConfiguration/ClaimGuard.php'),
|
|
] as $path) {
|
|
expect(file_get_contents($path))->not->toContain('tenant_id');
|
|
}
|
|
});
|