Update test case.

This commit is contained in:
Taylor Otwell 2015-05-06 16:58:00 -05:00
parent 0d541ecb9a
commit ed93318cb7
2 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,8 @@
<?php <?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase class ExampleTest extends TestCase
{ {
/** /**
@ -9,8 +12,7 @@ class ExampleTest extends TestCase
*/ */
public function testBasicExample() public function testBasicExample()
{ {
$response = $this->call('GET', '/'); $this->visit('/')
->see('Laravel 5');
$this->assertEquals(200, $response->status());
} }
} }

View File

@ -2,6 +2,13 @@
class TestCase extends Illuminate\Foundation\Testing\TestCase class TestCase extends Illuminate\Foundation\Testing\TestCase
{ {
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'http://localhost';
/** /**
* Creates the application. * Creates the application.
* *