Files
investbrain/tests/RegistrationTest.php
T

43 lines
1.1 KiB
PHP
Raw Normal View History

2024-08-01 13:53:10 -05:00
<?php
2025-01-28 17:33:54 -06:00
declare(strict_types=1);
2024-09-06 19:39:04 -05:00
namespace Tests;
2024-08-01 13:53:10 -05:00
use Illuminate\Foundation\Testing\RefreshDatabase;
use Laravel\Fortify\Features;
class RegistrationTest extends TestCase
{
use RefreshDatabase;
public function test_registration_screen_can_be_rendered(): void
{
if (! Features::enabled(Features::registration())) {
$this->markTestSkipped('Registration support is not enabled.');
}
$response = $this->get('/register');
$response->assertStatus(200);
}
public function test_new_users_can_register(): void
{
if (! Features::enabled(Features::registration())) {
$this->markTestSkipped('Registration support is not enabled.');
}
$response = $this->post('/register', [
'name' => 'Test User',
'email' => 'test@example.com',
'password' => 'password',
'password_confirmation' => 'password',
2025-04-09 19:25:15 -05:00
'terms' => true,
2024-08-01 13:53:10 -05:00
]);
$this->assertAuthenticated();
$response->assertRedirect(route('dashboard', absolute: false));
}
}