3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-02 05:52:33 +00:00
Files
snipe-it/tests/Feature/Settings/LabelSettingTest.php
2026-03-16 17:40:57 -07:00

17 lines
344 B
PHP

<?php
namespace Tests\Feature\Settings;
use App\Models\User;
use Tests\TestCase;
class LabelSettingTest extends TestCase
{
public function test_permission_required_to_view_label_settings()
{
$this->actingAs(User::factory()->create())
->get(route('settings.labels.index'))
->assertForbidden();
}
}