Created
September 21, 2017 17:56
-
-
Save deleugpn/909f4c86d39855c9bc62ccc373b0496d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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