mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-03 09:57:45 -08:00
42 lines
860 B
PHP
42 lines
860 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Api\Consumables;
|
||
|
|
||
|
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();
|
||
|
}
|
||
|
}
|