koel/tests/Feature/RecentlyPlayedSongTest.php

23 lines
471 B
PHP
Raw Normal View History

2022-07-27 09:30:04 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-27 09:30:04 +00:00
use App\Http\Resources\SongResource;
use App\Models\Interaction;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2024-01-11 12:41:33 +00:00
use function Tests\create_user;
2022-07-27 09:30:04 +00:00
class RecentlyPlayedSongTest extends TestCase
{
public function testIndex(): void
{
2024-01-11 12:41:33 +00:00
$user = create_user();
Interaction::factory(5)->for($user)->create();
$this->getAs('api/songs/recently-played', $user)
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE]);
}
2022-07-27 09:30:04 +00:00
}