mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
17 lines
398 B
PHP
17 lines
398 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Models;
|
|
|
|
use App\Models\Song;
|
|
use Tests\TestCase;
|
|
|
|
class SongTest extends TestCase
|
|
{
|
|
public function testLyricsDoNotContainTimestamps(): 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"]);
|
|
|
|
self::assertSame("Line 1\nLine 2\nLine 3", $song->lyrics);
|
|
}
|
|
}
|