share-lt/tests/Unit/TextWidgetModelTest.php
jon brookes c66645cbdd feat: add TextWidget
add TextWidget CRUD api

add basic tests for API
2026-01-08 16:50:03 +00:00

15 lines
261 B
PHP

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