firefly-iii/tests/acceptance/Controllers/SearchControllerTest.php
2016-02-04 07:30:48 +01:00

27 lines
661 B
PHP

<?php
/**
* SearchControllerTest.php
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
/**
* Generated by PHPUnit_SkeletonGenerator on 2016-01-19 at 15:39:29.
*/
class SearchControllerTest extends TestCase
{
/**
* @covers FireflyIII\Http\Controllers\SearchController::__construct
* @covers FireflyIII\Http\Controllers\SearchController::index
*/
public function testIndex()
{
$this->be($this->user());
$this->call('GET', '/search?q=test&search=');
$this->assertResponseStatus(200);
}
}