add class progress and fix endpoints

This commit is contained in:
root
2026-03-12 17:27:49 -04:00
parent 0f39dbee62
commit 33be0c9a0d
40 changed files with 2086 additions and 438 deletions
@@ -0,0 +1,19 @@
<?php
namespace Tests\Unit\Services\ClassProgress;
use App\Services\ClassProgress\ClassProgressMetaService;
use Tests\TestCase;
class ClassProgressMetaServiceTest extends TestCase
{
public function test_subject_sections_return_configured_values(): void
{
$service = new ClassProgressMetaService();
$sections = $service->subjectSections();
$this->assertArrayHasKey('islamic', $sections);
$this->assertArrayHasKey('quran', $sections);
}
}