11 lines
219 B
PHP
11 lines
219 B
PHP
|
|
<?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();
|
||
|
|
});
|