mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
17 lines
381 B
PHP
17 lines
381 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit\Services\SongStorages;
|
||
|
|
||
|
use App\Exceptions\KoelPlusRequiredException;
|
||
|
use App\Services\SongStorages\S3CompatibleStorage;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class S3CompatibleStorageTest extends TestCase
|
||
|
{
|
||
|
public function testSupported(): void
|
||
|
{
|
||
|
self::expectException(KoelPlusRequiredException::class);
|
||
|
app(S3CompatibleStorage::class);
|
||
|
}
|
||
|
}
|