koel/tests/Unit/PlaylistTest.php

16 lines
256 B
PHP
Raw Normal View History

2017-06-24 20:48:54 +00:00
<?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());
}
}