Есть метод getIndex у HomeController:
public function getIndex()
{
return \View::make('home');
}
В routes:
Route::get('/', ['as' => 'home', 'uses' => 'HomeController@getIndex']);
И простейший тест к нему:
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class HomeControllerTest extends TestCase
{
public function testIndexPage()
{
\View::shouldReceive('make')->with('home')->andReturn('test');
$response = $this->action('GET', 'HomeController@getIndex');
$this->assertResponseOk();
$this->assertEquals('test', $response->content());
}
}
Но почему-то возвращает 500-ю ошибку:
В чем может быть проблема?