Finish Playlist unit test

This commit is contained in:
Phan An 2017-06-24 21:48:54 +01:00
parent fcf6c8a700
commit d66522bd37

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