TenantAtlas/tests/Feature/AdminNewRedirectTest.php
2026-02-01 12:20:09 +01:00

9 lines
187 B
PHP

<?php
declare(strict_types=1);
it('redirects /admin/new to /admin/choose-tenant', function (): void {
$this->get('/admin/new')
->assertRedirect('/admin/choose-tenant');
});