share-lt/tests/Unit/TextWidgetModelTest.php

17 lines
284 B
PHP
Raw Permalink Normal View History

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