koel/tests/Feature/ArtistAlbumTest.php
2024-07-06 17:45:02 +02:00

21 lines
468 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
{
$artist = Artist::factory()->create();
Album::factory(5)->for($artist)->create();
$this->getAs('api/artists/' . $artist->id . '/albums')
->assertJsonStructure(['*' => AlbumResource::JSON_STRUCTURE]);
}
}