TenantAtlas/tests/Feature/Guards/Spec120NoGraphContractSecretMetadataTest.php
2026-03-07 17:41:55 +01:00

13 lines
417 B
PHP

<?php
declare(strict_types=1);
it('does not require graph contract secret metadata for spec 120', function (): void {
$contents = file_get_contents(base_path('config/graph_contracts.php'));
expect($contents)->not->toBeFalse();
expect($contents)->not->toContain('secret_metadata');
expect($contents)->not->toContain('protected_fields');
expect($contents)->not->toContain('redaction_rules');
});