with('backup:run', []) ->once() ->andReturn(0); Storage::disk('test-disk')->put('test-backup/test-file.zip', 'content'); $action = new ArchiveSystemBackup(new SyncBackupCatalog); $action->execute(); $this->assertDatabaseHas('backups', [ 'file_name' => 'test-backup test-file.zip', 'disk' => 'test-disk', 'path' => 'test-backup/test-file.zip', 'size' => 7, 'type' => 'full', ]); } }