16 lines
252 B
PHP
16 lines
252 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
public function test_home_redirects_guests_to_login(): void
|
|
{
|
|
$response = $this->get('/');
|
|
|
|
$response->assertRedirect('/login');
|
|
}
|
|
}
|