Commit ed93318c by Taylor Otwell

Update test case.

parent 0d541ecb
<?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 ...@@ -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());
} }
} }
...@@ -3,6 +3,13 @@ ...@@ -3,6 +3,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.
* *
* @return \Illuminate\Foundation\Application * @return \Illuminate\Foundation\Application
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment