mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
22 lines
503 B
PHP
22 lines
503 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Http\Resources\AlbumResource;
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use Tests\TestCase;
|
|
|
|
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(['*' => AlbumResource::JSON_STRUCTURE]);
|
|
}
|
|
}
|