fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
@@ -15,7 +15,7 @@ class ClassPreparationServiceTest extends TestCase
{
$this->seedPrepData();
$service = new ClassPreparationService();
$service = app(ClassPreparationService::class);
$payload = $service->listPrep('2025-2026', 'Fall');
$this->assertSame('2025-2026', $payload['schoolYear']);
@@ -28,7 +28,7 @@ class ClassPreparationServiceTest extends TestCase
{
$this->seedPrepData();
$service = new ClassPreparationService();
$service = app(ClassPreparationService::class);
$count = $service->markPrinted('2025-2026', 'Fall', [101]);
$this->assertSame(1, $count);