mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -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'));
|
|
}
|
|
}
|