refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
16
tests/Feature/Authentication/AuthenticateTest.php
Normal file
16
tests/Feature/Authentication/AuthenticateTest.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Authentication;
|
||||
|
||||
use Tests\FeatureTestCase;
|
||||
|
||||
class AuthenticateTest extends FeatureTestCase
|
||||
{
|
||||
public function test_guest_is_redirect_to_login()
|
||||
{
|
||||
$response = $this->get('/people');
|
||||
|
||||
$response->assertStatus(302);
|
||||
$response->assertRedirect('/');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user