mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
23 lines
502 B
PHP
23 lines
502 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Http\Resources\SongResource;
|
|
use App\Models\Album;
|
|
use App\Models\Song;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
class AlbumSongTest extends TestCase
|
|
{
|
|
#[Test]
|
|
public function index(): void
|
|
{
|
|
$album = Album::factory()->create();
|
|
|
|
Song::factory(5)->for($album)->create();
|
|
|
|
$this->getAs('api/albums/' . $album->id . '/songs')
|
|
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE]);
|
|
}
|
|
}
|