spec\GrumPHP\Formatter\GitBlacklistFormatterSpec::it_displays_stdout_long PHP Метод

it_displays_stdout_long() публичный Метод

public it_displays_stdout_long ( Process $process )
$process Symfony\Component\Process\Process
    function it_displays_stdout_long(Process $process)
    {
        $process->getOutput()->willReturn('normal/file.php' . "\n" . "42:stuff stuff g;if(d.options.debug===!0&&(var_dump(\"Active tab is \"),d.options.debug.href,f=g.split(\"#\")[1],d.options.debug===!0&&var_dump(\"Pushed state \"+g);" . "\n");
        $process->getErrorOutput()->willReturn('');
        $this->format($process)->shouldReturn("normal/file.php" . PHP_EOL . "  1:51: ptions.debug===!0&&(var_dump(\"Active tab is \")" . PHP_EOL . "  1:149: options.debug===!0&&var_dump(\"Pushed state \"+g");
    }