Scaffold a couple test cases

This commit is contained in:
Marcus Moore 2023-11-30 12:12:57 -08:00
parent b7011d853a
commit 4f031149e8
No known key found for this signature in database

View file

@ -34,4 +34,18 @@ class SavedReportTest extends TestCase
$this->assertEquals('', (new SavedReport)->textValue('is_a_text_value'));
}
public function testParsingSelectValues()
{
$this->markTestIncomplete();
}
public function testSelectValuesDoNotIncludeDeletedModels()
{
$this->markTestIncomplete();
// report saved with select option for a company (or whatever)
// company is deleted
// ensure company's id is not returned
}
}