generated from thegrind/laravel-dockerized
10 lines
213 B
PHP
10 lines
213 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
uses(\Illuminate\Foundation\Testing\RefreshDatabase::class);
|
|
|
|
test('guests are redirected to the login page', function () {
|
|
$this->get('/dashboard')->assertRedirect('/login');
|
|
});
|