mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Scaffold two tests
This commit is contained in:
parent
5cd9dd4a67
commit
d1bb3ef6bf
|
@ -99,6 +99,14 @@ class BulkDeleteUsersTest extends TestCase
|
|||
$this->assertActionLogCheckInEntryFor($userC, $accessoryA);
|
||||
}
|
||||
|
||||
public function testAssetsCanBeBulkCheckedIn()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
|
||||
// @todo:
|
||||
// $this->assertActionLogCheckInEntryFor(); ...
|
||||
}
|
||||
|
||||
public function testConsumablesCanBeBulkCheckedIn()
|
||||
{
|
||||
[$consumableA, $consumableB] = Consumable::factory()->count(2)->create();
|
||||
|
@ -133,6 +141,14 @@ class BulkDeleteUsersTest extends TestCase
|
|||
$this->assertActionLogCheckInEntryFor($userC, $consumableA);
|
||||
}
|
||||
|
||||
public function testLicenseSeatsCanBeBulkCheckedIn()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
|
||||
// @todo:
|
||||
// $this->assertActionLogCheckInEntryFor(); ...
|
||||
}
|
||||
|
||||
public function testUsersCanBeDeletedInBulk()
|
||||
{
|
||||
[$userA, $userB, $userC] = User::factory()->count(3)->create();
|
||||
|
|
Loading…
Reference in a new issue