koel/tests/Feature/AlbumSongTest.php

21 lines
427 B
PHP
Raw Normal View History

2022-07-26 20:19:49 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:19:49 +00:00
use App\Models\Album;
use App\Models\Song;
class AlbumSongTest extends TestCase
{
public function testIndex(): void
{
/** @var Album $album */
$album = Album::factory()->create();
2022-07-27 08:49:33 +00:00
Song::factory(5)->for($album)->create();
2022-07-26 20:19:49 +00:00
2022-07-27 08:49:33 +00:00
$this->getAs('api/albums/' . $album->id . '/songs')
2022-07-26 20:23:34 +00:00
->assertJsonStructure(['*' => SongTest::JSON_STRUCTURE]);
2022-07-26 20:19:49 +00:00
}
}