2026-01-02 13:58:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use App\Models\Entry;
|
|
|
|
|
|
|
|
|
|
it('has correct fillable attributes', function () {
|
|
|
|
|
$expected = [
|
|
|
|
|
'title',
|
|
|
|
|
'slug',
|
|
|
|
|
'description',
|
|
|
|
|
'is_published',
|
|
|
|
|
'is_featured',
|
|
|
|
|
'published_at',
|
|
|
|
|
'content',
|
2026-01-09 13:18:37 +00:00
|
|
|
'category_id',
|
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);
|
|
|
|
|
});
|