mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
17 lines
348 B
PHP
17 lines
348 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Song;
|
|
use Tests\TestCase;
|
|
|
|
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]);
|
|
}
|
|
}
|