mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
16 lines
367 B
PHP
16 lines
367 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\SongStorages;
|
|
|
|
use App\Exceptions\KoelPlusRequiredException;
|
|
use App\Services\SongStorages\DropboxStorage;
|
|
use Tests\TestCase;
|
|
|
|
class DropboxStorageTest extends TestCase
|
|
{
|
|
public function testSupported(): void
|
|
{
|
|
$this->expectException(KoelPlusRequiredException::class);
|
|
app(DropboxStorage::class);
|
|
}
|
|
}
|