mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
17 lines
327 B
PHP
17 lines
327 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class DashboardTest extends TestCase
|
||
|
{
|
||
|
public function testUsersWithoutAdminAccessAreRedirected()
|
||
|
{
|
||
|
$this->actingAs(User::factory()->create())
|
||
|
->get(route('home'))
|
||
|
->assertRedirect(route('view-assets'));
|
||
|
}
|
||
|
}
|