14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
public function test_home_redirects_to_login_for_guests(): void
|
|
{
|
|
$this->get('/')->assertRedirect(route('login'));
|
|
}
|
|
}
|