mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
18 lines
414 B
PHP
18 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());
|
||
|
}
|
||
|
}
|