mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
17 lines
414 B
PHP
17 lines
414 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Models;
|
|
|
|
use App\Models\SongZipArchive;
|
|
use Tests\TestCase;
|
|
|
|
class SongZipArchiveTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function it_can_be_instantiated()
|
|
{
|
|
$songZipArchive = new SongZipArchive();
|
|
$this->assertInstanceOf(SongZipArchive::class, $songZipArchive);
|
|
$this->assertInstanceOf(\ZipArchive::class, $songZipArchive->getArchive());
|
|
}
|
|
}
|