snipe-it/tests/Feature/Components/Ui/ComponentIndexTest.php

24 lines
537 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature\Components\Ui;
use App\Models\User;
use Tests\TestCase;
class ComponentIndexTest extends TestCase
{
public function testPermissionRequiredToViewComponentsList()
{
$this->actingAs(User::factory()->create())
->get(route('components.index'))
->assertForbidden();
}
public function testUserCanListComponents()
{
$this->actingAs(User::factory()->superuser()->create())
->get(route('components.index'))
->assertOk();
}
}