Fix Pint formatting
This commit is contained in:
@@ -9,16 +9,16 @@ class ClassProgressReportTest extends TestCase
|
||||
{
|
||||
public function test_model_metadata_is_converted(): void
|
||||
{
|
||||
$model = new ClassProgressReport();
|
||||
$model = new ClassProgressReport;
|
||||
|
||||
$this->assertSame('class_progress_reports', $model->getTable());
|
||||
$this->assertSame('id', $model->getKeyName());
|
||||
$this->assertSame(true, $model->timestamps);
|
||||
$this->assertSame(["class_section_id", "teacher_id", "week_start", "week_end", "subject", "unit_title", "materials", "covered", "homework", "assessment", "status", "status_notes", "class_notes", "next_week_plan", "support_needed", "flags_json", "attachment_path", "created_at", "updated_at"], $model->getFillable());
|
||||
$this->assertSame(['class_section_id', 'teacher_id', 'week_start', 'week_end', 'subject', 'unit_title', 'materials', 'covered', 'homework', 'assessment', 'status', 'status_notes', 'class_notes', 'next_week_plan', 'support_needed', 'flags_json', 'attachment_path', 'created_at', 'updated_at'], $model->getFillable());
|
||||
}
|
||||
|
||||
public function test_model_class_loads(): void
|
||||
{
|
||||
$this->assertInstanceOf(ClassProgressReport::class, new ClassProgressReport());
|
||||
$this->assertInstanceOf(ClassProgressReport::class, new ClassProgressReport);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user