mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 18:14:09 -08:00
20 lines
451 B
PHP
20 lines
451 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Accessories\Api;
|
||
|
|
||
|
use App\Models\Accessory;
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class AccessoryUpdateTest extends TestCase
|
||
|
{
|
||
|
public function testPermissionRequiredToUpdateAccessory()
|
||
|
{
|
||
|
$accessory = Accessory::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->create())
|
||
|
->patchJson(route('api.accessories.update', $accessory))
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
}
|