share-lt/tests/Unit/EntryModelTest.php
2026-01-17 18:01:50 +00:00

21 lines
400 B
PHP

<?php
use App\Models\Entry;
it('has correct fillable attributes', function () {
$expected = [
'title',
'slug',
'description',
'is_published',
'is_featured',
'published_at',
'content',
'call_to_action_link',
'call_to_action_text',
];
$entry = new Entry;
expect($entry->getFillable())->toEqual($expected);
});