koel/tests/Feature/ArtistSongTest.php

23 lines
503 B
PHP

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