mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-03-03 03:38:57 +00:00
laravel pure
This commit is contained in:
16
laravel-pure/tests/Feature/DashboardTest.php
Normal file
16
laravel-pure/tests/Feature/DashboardTest.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
use App\Models\User;
|
||||
|
||||
test('guests are redirected to the login page', function () {
|
||||
$response = $this->get(route('dashboard'));
|
||||
$response->assertRedirect(route('login'));
|
||||
});
|
||||
|
||||
test('authenticated users can visit the dashboard', function () {
|
||||
$user = User::factory()->create();
|
||||
$this->actingAs($user);
|
||||
|
||||
$response = $this->get(route('dashboard'));
|
||||
$response->assertStatus(200);
|
||||
});
|
||||
Reference in New Issue
Block a user