mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-10 05:17:30 -08:00
19 lines
340 B
PHP
19 lines
340 B
PHP
<?php
|
|||
|
|||
namespace Tests\Feature\Settings;
|
|||
|
|||
use Tests\TestCase;
|
|||
use App\Models\User;
|
|||
|
|||
|
|||
class LabelSettingTest extends TestCase
|
|||
{
|
|||
public function testPermissionRequiredToViewLabelSettings()
|
|||
{
|
|||
$this->actingAs(User::factory()->create())
|
|||
->get(route('settings.labels.index'))
|
|||
->assertForbidden();
|
|||
}
|
|||
|
|||
}
|