byos_laravel/tests/Feature/DashboardTest.php
Benjamin Nussbaum b4b6286172
Some checks are pending
tests / ci (push) Waiting to run
refactor: apply rector
2025-09-24 20:35:48 +02:00

18 lines
466 B
PHP

<?php
use App\Models\User;
uses(Illuminate\Foundation\Testing\RefreshDatabase::class);
test('guests are redirected to the login page', function (): void {
$response = $this->get('/dashboard');
$response->assertRedirect('/login');
});
test('authenticated users can visit the dashboard', function (): void {
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->get('/dashboard');
$response->assertStatus(200);
});