koel/tests/Feature/ArtistAlbumTest.php

22 lines
508 B
PHP

<?php
namespace Tests\Feature;
use App\Http\Resources\AlbumResource;
use App\Models\Album;
use App\Models\Artist;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
class ArtistAlbumTest extends TestCase
{
#[Test]
public function index(): void
{
$artist = Artist::factory()->create();
Album::factory(5)->for($artist)->create();
$this->getAs("api/artists/{$artist->id}/albums")
->assertJsonStructure(['*' => AlbumResource::JSON_STRUCTURE]);
}
}