share-lt/tests/Unit/TextWidgetModelTest.php
jon brookes 9b9e1a8e29 feat: add category management
associate with entries and text widgets
2026-01-09 13:18:37 +00:00

16 lines
284 B
PHP

<?php
use App\Models\TextWidget;
it('has correct fillable attributes', function () {
$expected = [
'title',
'description',
'content',
'category_id',
];
$entry = new TextWidget;
expect($entry->getFillable())->toEqual($expected);
});