koel/tests/Feature/ArtistSongTest.php
2024-07-06 17:45:02 +02:00

21 lines
462 B
PHP

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