3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-06 00:15:26 +00:00
Files
snipe-it/tests/Feature/Checkouts/ConsumableCheckoutTest.php
Marcus Moore de2aa903c5 Scaffold tests
2024-01-29 17:56:55 -08:00

42 lines
854 B
PHP

<?php
namespace Tests\Feature\Checkouts;
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
class ConsumableCheckoutTest extends TestCase
{
use InteractsWithSettings;
public function testCheckingOutConsumableRequiresCorrectPermission()
{
$this->markTestIncomplete();
}
public function testValidationWhenCheckingOutConsumable()
{
$this->markTestIncomplete();
}
public function testConsumableMustBeAvailableWhenCheckingOut()
{
$this->markTestIncomplete();
}
public function testConsumableCanBeCheckedOut()
{
$this->markTestIncomplete();
}
public function testUserSentNotificationUponCheckout()
{
$this->markTestIncomplete();
}
public function testActionLogCreatedUponCheckout()
{
$this->markTestIncomplete();
}
}