33 lines
906 B
PHP
33 lines
906 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Models;
|
|
|
|
use App\Models\ContactReminder;
|
|
use App\Models\UserNotificationChannel;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Tests\TestCase;
|
|
|
|
class ContactReminderTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
/** @test */
|
|
public function it_has_one_contact()
|
|
{
|
|
$reminder = ContactReminder::factory()->create();
|
|
|
|
$this->assertTrue($reminder->contact()->exists());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_has_many_user_notification_channels(): void
|
|
{
|
|
$reminder = ContactReminder::factory()->create();
|
|
$userNotificationChannel = UserNotificationChannel::factory()->create();
|
|
$reminder->userNotificationChannels()->sync([$userNotificationChannel->id => ['scheduled_at' => Carbon::now()]]);
|
|
|
|
$this->assertTrue($reminder->userNotificationChannels()->exists());
|
|
}
|
|
}
|