mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 11:46:47 +00:00
16 lines
392 B
PHP
16 lines
392 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
test('guests are redirected to the login page', function () {
|
|
$response = $this->get('/dashboard');
|
|
$response->assertRedirect('/login');
|
|
});
|
|
|
|
test('authenticated users can visit the dashboard', function () {
|
|
$user = User::factory()->create();
|
|
$this->actingAs($user);
|
|
|
|
$response = $this->get('/dashboard');
|
|
$response->assertStatus(200);
|
|
}); |