Files
construprogress/tests/Feature/ExampleTest.php
T

20 lines
411 B
PHP
Raw Normal View History

2026-05-07 23:31:33 +02:00
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* La raíz redirige al dashboard tras 'auth'; un invitado acaba en login.
2026-05-07 23:31:33 +02:00
*/
public function test_the_root_redirects_guests_to_login(): void
2026-05-07 23:31:33 +02:00
{
$response = $this->get('/');
$response->assertRedirect(route('login'));
2026-05-07 23:31:33 +02:00
}
}