mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
21 lines
444 B
PHP
21 lines
444 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\V6;
|
||
|
|
||
|
use App\Models\Album;
|
||
|
use App\Models\Artist;
|
||
|
|
||
|
class ArtistAlbumTest extends TestCase
|
||
|
{
|
||
|
public function testIndex(): void
|
||
|
{
|
||
|
/** @var Artist $artist */
|
||
|
$artist = Artist::factory()->create();
|
||
|
|
||
|
Album::factory(5)->for($artist)->create();
|
||
|
|
||
|
$this->getAs('api/artists/' . $artist->id . '/albums')
|
||
|
->assertJsonStructure(['*' => AlbumTest::JSON_STRUCTURE]);
|
||
|
}
|
||
|
}
|