mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-29 06:30:47 -08:00
Scaffold a couple test cases
This commit is contained in:
parent
b7011d853a
commit
4f031149e8
|
@ -34,4 +34,18 @@ class SavedReportTest extends TestCase
|
||||||
|
|
||||||
$this->assertEquals('', (new SavedReport)->textValue('is_a_text_value'));
|
$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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue