You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
454 B
PHP
18 lines
454 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
uses(\Illuminate\Foundation\Testing\RefreshDatabase::class);
|
|
|
|
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);
|
|
}); |