SIPDAM/samooapk/tests/Feature/Auth/RegistrationTest.php

34 lines
922 B
PHP

<?php
namespace Tests\Feature\Auth;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class RegistrationTest extends TestCase
{
public function test_registration_screen_redirects_to_login(): void
{
$response = $this->get('/register');
$response->assertRedirect('/login');
$response->assertSessionHas('error', 'regis sudah ditutup hubungi mandor aja.');
}
public function test_new_users_cannot_register(): void
{
$response = $this->post('/register', [
'name' => 'Test User',
'email' => 'test@example.com',
'password' => 'password',
'password_confirmation' => 'password',
]);
$this->assertGuest();
$response->assertRedirect('/login');
$response->assertSessionHas('error', 'regis sudah ditutup hubungi mandor aja.');
}
}