mirror of
https://github.com/koel/koel
synced 2024-12-23 02:53:20 +00:00
23 lines
480 B
PHP
23 lines
480 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\V6;
|
||
|
|
||
|
use App\Models\Artist;
|
||
|
use App\Models\Song;
|
||
|
|
||
|
class ArtistSongTest extends TestCase
|
||
|
{
|
||
|
public function testIndex(): void
|
||
|
{
|
||
|
/** @var Artist $artist */
|
||
|
$artist = Artist::factory()->create();
|
||
|
|
||
|
Song::factory(5)->create([
|
||
|
'artist_id' => $artist->id,
|
||
|
]);
|
||
|
|
||
|
$this->getAsUser('api/artists/' . $artist->id . '/songs')
|
||
|
->assertJsonStructure(['*' => SongTest::JSON_STRUCTURE]);
|
||
|
}
|
||
|
}
|