mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
e8ec11652f
Signed-off-by: snipe <snipe@snipe.net>
22 lines
483 B
PHP
22 lines
483 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Checkins\Ui;
|
|
|
|
use App\Models\LicenseSeat;
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class LicenseCheckinTest extends TestCase
|
|
{
|
|
public function testCheckingInLicenseRequiresCorrectPermission()
|
|
{
|
|
$this->actingAs(User::factory()->create())
|
|
->post(route('licenses.checkin.save', [
|
|
'licenseId' => LicenseSeat::factory()->assignedToUser()->create()->id,
|
|
]))
|
|
->assertForbidden();
|
|
}
|
|
|
|
|
|
}
|