mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
17 lines
366 B
PHP
17 lines
366 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
|
||
|
{
|
||
|
self::expectException(KoelPlusRequiredException::class);
|
||
|
app(DropboxStorage::class);
|
||
|
}
|
||
|
}
|