Files
alrahma_sunday_school_api/tests/Unit/Services/Settings/SchoolCalendar/SchoolCalendarContextServiceTest.php
T
2026-06-08 23:30:22 -04:00

19 lines
467 B
PHP

<?php
namespace Tests\Unit\Services\Settings\SchoolCalendar;
use App\Services\Settings\SchoolCalendar\SchoolCalendarContextService;
use Tests\TestCase;
class SchoolCalendarContextServiceTest extends TestCase
{
public function test_event_types_returns_list(): void
{
$service = new SchoolCalendarContextService;
$types = $service->eventTypes();
$this->assertNotEmpty($types);
$this->assertContains('Event', $types);
}
}