koel/tests/Unit/Models/SongTest.php

19 lines
523 B
PHP
Raw Normal View History

2017-08-05 16:56:11 +00:00
<?php
2022-07-29 06:47:10 +00:00
namespace Tests\Unit\Models;
2017-08-05 16:56:11 +00:00
use App\Models\Song;
use Tests\TestCase;
class SongTest extends TestCase
{
public function testRetrievedLyricsDoNotContainTimestamps(): void
{
/** @var Song $song */
$song = Song::factory()->create(['lyrics' => "[00:00.00]Line 1\n[00:01.00]Line 2\n[00:02.00]Line 3"]);
2022-10-07 14:25:44 +00:00
self::assertSame("Line 1\nLine 2\nLine 3", $song->lyrics);
self::assertSame("[00:00.00]Line 1\n[00:01.00]Line 2\n[00:02.00]Line 3", $song->getAttributes()['lyrics']);
}
2017-08-05 16:56:11 +00:00
}