16 lines
284 B
PHP
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);
|
|
});
|