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');
|
||
|
|
});
|