mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
Finish Playlist unit test
This commit is contained in:
parent
fcf6c8a700
commit
d66522bd37
1 changed files with 15 additions and 0 deletions
15
tests/Unit/PlaylistTest.php
Normal file
15
tests/Unit/PlaylistTest.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Unit;
|
||||
|
||||
use App\Models\Playlist;
|
||||
use Tests\TestCase;
|
||||
|
||||
class PlaylistTest extends TestCase
|
||||
{
|
||||
/** @test */
|
||||
public function it_can_be_instantiated()
|
||||
{
|
||||
$this->assertInstanceOf(Playlist::class, new Playlist());
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue