mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-16 10:34:08 -08:00
24 lines
532 B
PHP
24 lines
532 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\AssetModels\Ui;
|
|
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class AssetModelIndexTest extends TestCase
|
|
{
|
|
public function testPermissionRequiredToViewAssetModelList()
|
|
{
|
|
$this->actingAs(User::factory()->create())
|
|
->get(route('models.index'))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testUserCanListAssetModels()
|
|
{
|
|
$this->actingAs(User::factory()->superuser()->create())
|
|
->get(route('models.index'))
|
|
->assertOk();
|
|
}
|
|
}
|