koel/tests/Unit/PlaylistTest.php
2017-06-24 21:48:54 +01:00

15 lines
256 B
PHP

<?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());
}
}