get('/register'); $response->assertStatus(200); }); it('rejects new registrations because registration is disabled', function () { $response = $this->post('/register', [ 'name' => 'Test User', 'email' => 'test@example.com', 'password' => 'password', 'password_confirmation' => 'password', ]); $response->assertForbidden(); });