16 lines
304 B
PHP
16 lines
304 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature;
|
||
|
|
||
|
use Tests\TestCase;
|
||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
|
||
|
class SearchControllerTest extends TestCase
|
||
|
{
|
||
|
public function test_search()
|
||
|
{
|
||
|
$response = $this->get('/search?terms=wedding');
|
||
|
$response->assertSee('#weddingfavour');
|
||
|
}
|
||
|
}
|