mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 02:27:57 +00:00
9 lines
224 B
PHP
9 lines
224 B
PHP
<?php
|
|
|
|
use App\Models\ScheduledDatabaseBackupExecution;
|
|
|
|
it('casts finished_at to a datetime', function () {
|
|
expect((new ScheduledDatabaseBackupExecution)->getCasts())
|
|
->toHaveKey('finished_at', 'datetime');
|
|
});
|