2026-01-08 16:22:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use App\Models\TextWidget;
|
|
|
|
|
|
|
|
|
|
it('has correct fillable attributes', function () {
|
|
|
|
|
$expected = [
|
|
|
|
|
'title',
|
|
|
|
|
'description',
|
|
|
|
|
'content',
|
2026-01-09 13:18:37 +00:00
|
|
|
'category_id',
|
2026-01-08 16:22:47 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$entry = new TextWidget;
|
|
|
|
|
|
|
|
|
|
expect($entry->getFillable())->toEqual($expected);
|
|
|
|
|
});
|