koel/tests/Feature/V6/AlbumSongTest.php
2022-07-27 10:49:33 +02:00

20 lines
430 B
PHP

<?php
namespace Tests\Feature\V6;
use App\Models\Album;
use App\Models\Song;
class AlbumSongTest extends TestCase
{
public function testIndex(): void
{
/** @var Album $album */
$album = Album::factory()->create();
Song::factory(5)->for($album)->create();
$this->getAs('api/albums/' . $album->id . '/songs')
->assertJsonStructure(['*' => SongTest::JSON_STRUCTURE]);
}
}