fix example test

This commit is contained in:
Taylor Otwell 2016-12-05 12:40:03 -06:00
parent cf73f8cb21
commit b64d1e3dc8
1 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,8 @@ class ExampleTest extends TestCase
*/ */
public function testBasicTest() public function testBasicTest()
{ {
$this->visit('/') $response = $this->get('/');
->see('Laravel');
$response->assertHasStatus(200);
} }
} }