TenantAtlas/tests/Feature/AdminNewRedirectTest.php

9 lines
182 B
PHP

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