mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
13 lines
298 B
PHP
13 lines
298 B
PHP
<?php
|
|
|
|
use Pest\Console\Help;
|
|
use Symfony\Component\Console\Output\BufferedOutput;
|
|
|
|
it('outputs the help information when --help is used', function () {
|
|
$output = new BufferedOutput;
|
|
$plugin = new Help($output);
|
|
|
|
$plugin();
|
|
expect($output->fetch())->toContain('Pest Options:');
|
|
});
|