byos_laravel/tests/Feature/Auth/RegistrationTest.php
2026-01-15 23:34:58 +01:00

23 lines
621 B
PHP

<?php
uses(Illuminate\Foundation\Testing\RefreshDatabase::class);
test('registration screen can be rendered', function (): void {
$response = $this->get(route('register'));
$response->assertOk();
});
test('new users can register', function (): void {
$response = $this->post(route('register.store'), [
'name' => 'John Doe',
'email' => 'test@example.com',
'password' => 'password',
'password_confirmation' => 'password',
]);
$response->assertSessionHasNoErrors()
->assertRedirect(route('dashboard', absolute: false));
$this->assertAuthenticated();
});