koel/tests/Integration/Models/SongTest.php

18 lines
371 B
PHP
Raw Normal View History

2017-08-05 16:56:11 +00:00
<?php
2017-12-09 22:39:34 +00:00
namespace Tests\Integration\Models;
2017-08-05 16:56:11 +00:00
use App\Models\Song;
use Tests\TestCase;
class SongTest extends TestCase
{
public function testGettingS3HostedSongs(): void
2017-12-09 22:39:34 +00:00
{
/** @var Song $song */
$song = Song::factory()->create(['path' => 's3://foo/bar']);
2017-12-09 22:39:34 +00:00
self::assertEquals(['bucket' => 'foo', 'key' => 'bar'], $song->s3_params);
2017-12-09 22:39:34 +00:00
}
2017-08-05 16:56:11 +00:00
}