share-lt/tests/Unit/EntryModelTest.php

20 lines
340 B
PHP
Raw Permalink Normal View History

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',
];
$entry = new Entry();
expect($entry->getFillable())->toEqual($expected);
});