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');
|
|
}
|
|
});
|