13 lines
417 B
PHP
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');
|
|
});
|