Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created September 21, 2017 17:56
Show Gist options
  • Select an option

  • Save deleugpn/909f4c86d39855c9bc62ccc373b0496d to your computer and use it in GitHub Desktop.

Select an option

Save deleugpn/909f4c86d39855c9bc62ccc373b0496d to your computer and use it in GitHub Desktop.
<?php
namespace Tests\Integration;
use Facades\App\Process;
use Tests\TestCase;
class ProcessTest extends TestCase
{
/**
* @test
*/
public function test_process()
{
$output = Process::run(base_path('/tests/Integration/process.sh'));
$this->assertContains('process output', $output);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment