koel/tests/Feature/V6/SongSearchTest.php
2022-07-27 12:04:04 +02:00

16 lines
331 B
PHP

<?php
namespace Tests\Feature\V6;
use App\Models\Song;
class SongSearchTest extends TestCase
{
public function testSearch(): void
{
Song::factory(10)->create(['title' => 'A Foo Song']);
$this->getAs('api/search/songs?q=foo')
->assertJsonStructure(['*' => SongTest::JSON_STRUCTURE]);
}
}