12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\AutoReview;
- use PHPUnit\Framework\TestCase;
- /**
- * @internal
- *
- * @coversNothing
- *
- * @group covers-nothing
- * @group auto-review
- */
- final class ComposerFileTest extends TestCase
- {
- public function testScriptsHaveDescriptions(): void
- {
- $composerJsonContent = file_get_contents(__DIR__.'/../../composer.json');
- $composerJson = json_decode($composerJsonContent, true, 512, JSON_THROW_ON_ERROR);
- $scripts = array_keys($composerJson['scripts']);
- $descriptions = array_keys($composerJson['scripts-descriptions']);
- self::assertSame([], array_diff($scripts, $descriptions), 'There should be no scripts with missing description.');
- self::assertSame([], array_diff($descriptions, $scripts), 'There should be no superfluous description for not defined scripts.');
- }
- }
|