Files
pest/tests/Unit/Console/Help.php
T
2026-07-18 01:10:01 +01:00

13 lines
304 B
PHP

<?php
use Pest\Console\Help;
use Symfony\Component\Console\Output\BufferedOutput;
it('outputs the help information when --help is used', function (): void {
$output = new BufferedOutput;
$plugin = new Help($output);
$plugin();
expect($output->fetch())->toContain('Pest Options:');
});