koel/tests/Feature/ArtistAlbumTest.php
2023-06-05 23:46:41 +02:00

20 lines
441 B
PHP

<?php
namespace Tests\Feature;
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]);
}
}