Organization

This commit is contained in:
Marcus Moore 2024-04-10 12:12:44 -07:00
parent e65252725a
commit 37ebf1827f
No known key found for this signature in database

View file

@ -112,6 +112,16 @@ class AssetCheckoutTest extends TestCase
}); });
} }
public function testAnAssetCanBeCheckedOutToAnAsset()
{
$this->markTestIncomplete();
}
public function testAnAssetCanBeCheckedOutToALocation()
{
$this->markTestIncomplete();
}
public function testLicenseSeatsAreAssignedToUserUponCheckout() public function testLicenseSeatsAreAssignedToUserUponCheckout()
{ {
$asset = Asset::factory()->create(); $asset = Asset::factory()->create();
@ -129,16 +139,6 @@ class AssetCheckoutTest extends TestCase
$this->assertTrue($user->fresh()->licenses->contains($seat->license)); $this->assertTrue($user->fresh()->licenses->contains($seat->license));
} }
public function testAnAssetCanBeCheckedOutToAnAsset()
{
$this->markTestIncomplete();
}
public function testAnAssetCanBeCheckedOutToALocation()
{
$this->markTestIncomplete();
}
public function testLastCheckoutUsesCurrentDateIfNotProvided() public function testLastCheckoutUsesCurrentDateIfNotProvided()
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();