koel/tests/Feature/ArtistAlbumTest.php

22 lines
461 B
PHP
Raw Normal View History

<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
use App\Models\Album;
use App\Models\Artist;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
class ArtistAlbumTest extends TestCase
{
public function testIndex(): void
{
/** @var Artist $artist */
$artist = Artist::factory()->create();
Album::factory(5)->for($artist)->create();
$this->getAs('api/artists/' . $artist->id . '/albums')
->assertJsonStructure(['*' => AlbumTest::JSON_STRUCTURE]);
}
}