Files
portal/app/tests/Feature/Advertising/BannerIncludedModelTest.php
T

11 lines
219 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
use App\Models\AdCampaignBanner;
it('casts included to bool and is fillable', function () {
$b = new AdCampaignBanner(['included' => 0]);
expect($b->included)->toBeFalse();
});