Docker/Production/SNIPE-IT/tests/Feature/DashboardTest.php
2024-04-19 10:27:36 +02:00

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'));
}
}