koel/tests/Feature/ArtistAlbumTest.php
2024-10-24 17:45:45 +07:00

23 lines
515 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]);
}
}