Files
ratemas/tests/Feature/ExampleTest.php
2026-05-26 10:25:37 +08:00

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');
}
}