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

21 lines
461 B
PHP

<?php
namespace Tests\Feature;
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(['*' => AlbumTest::JSON_STRUCTURE]);
}
}