2026-01-02 13:58:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use App\Models\Entry;
|
|
|
|
|
|
|
|
|
|
it('has correct fillable attributes', function () {
|
|
|
|
|
$expected = [
|
|
|
|
|
'title',
|
2026-01-24 11:18:01 +00:00
|
|
|
'type',
|
2026-01-02 13:58:06 +00:00
|
|
|
'slug',
|
|
|
|
|
'description',
|
|
|
|
|
'is_published',
|
|
|
|
|
'is_featured',
|
|
|
|
|
'published_at',
|
|
|
|
|
'content',
|
2026-01-17 16:35:14 +00:00
|
|
|
'call_to_action_link',
|
|
|
|
|
'call_to_action_text',
|
2026-01-24 11:18:01 +00:00
|
|
|
'category_id',
|
|
|
|
|
'priority',
|
2026-01-02 13:58:06 +00:00
|
|
|
];
|
|
|
|
|
|
2026-01-09 13:18:37 +00:00
|
|
|
$entry = new Entry;
|
2026-01-02 13:58:06 +00:00
|
|
|
|
|
|
|
|
expect($entry->getFillable())->toEqual($expected);
|
|
|
|
|
});
|