mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -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);
|
$this->assertActionLogCheckInEntryFor($userC, $accessoryA);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testAssetsCanBeBulkCheckedIn()
|
||||||
|
{
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
|
||||||
|
// @todo:
|
||||||
|
// $this->assertActionLogCheckInEntryFor(); ...
|
||||||
|
}
|
||||||
|
|
||||||
public function testConsumablesCanBeBulkCheckedIn()
|
public function testConsumablesCanBeBulkCheckedIn()
|
||||||
{
|
{
|
||||||
[$consumableA, $consumableB] = Consumable::factory()->count(2)->create();
|
[$consumableA, $consumableB] = Consumable::factory()->count(2)->create();
|
||||||
|
@ -133,6 +141,14 @@ class BulkDeleteUsersTest extends TestCase
|
||||||
$this->assertActionLogCheckInEntryFor($userC, $consumableA);
|
$this->assertActionLogCheckInEntryFor($userC, $consumableA);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testLicenseSeatsCanBeBulkCheckedIn()
|
||||||
|
{
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
|
||||||
|
// @todo:
|
||||||
|
// $this->assertActionLogCheckInEntryFor(); ...
|
||||||
|
}
|
||||||
|
|
||||||
public function testUsersCanBeDeletedInBulk()
|
public function testUsersCanBeDeletedInBulk()
|
||||||
{
|
{
|
||||||
[$userA, $userB, $userC] = User::factory()->count(3)->create();
|
[$userA, $userB, $userC] = User::factory()->count(3)->create();
|
||||||
|
|
Loading…
Reference in a new issue