koel/tests/Feature/ArtistTest.php

25 lines
546 B
PHP
Raw Normal View History

2022-07-26 20:19:58 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:19:58 +00:00
use App\Http\Resources\ArtistResource;
2022-07-26 20:19:58 +00:00
use App\Models\Artist;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2022-07-26 20:19:58 +00:00
class ArtistTest extends TestCase
{
public function testIndex(): void
{
Artist::factory(10)->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/artists')
->assertJsonStructure(ArtistResource::PAGINATION_JSON_STRUCTURE);
2022-07-26 20:19:58 +00:00
}
public function testShow(): void
{
2024-04-24 21:58:19 +00:00
$this->getAs('api/artists/' . Artist::factory()->create()->id)
->assertJsonStructure(ArtistResource::JSON_STRUCTURE);
2022-07-26 20:19:58 +00:00
}
}