mirror of
https://github.com/koel/koel
synced 2024-12-26 04:23:05 +00:00
15 lines
265 B
PHP
15 lines
265 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services;
|
|
|
|
use App\Models\Playlist;
|
|
use Tests\TestCase;
|
|
|
|
class PlaylistTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function it_can_be_instantiated()
|
|
{
|
|
$this->assertInstanceOf(Playlist::class, new Playlist());
|
|
}
|
|
}
|