write new tests

This commit is contained in:
2025-05-12 17:05:42 +03:30
parent 70f3c36f58
commit db8cda55df
13 changed files with 507 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ class IndexTest extends TestCase
public function test_unauthenticated_user_cannot_access_permission_index(): void
{
$response = $this->getJson(route('permissions.list'));
$response = $this->getJson(route('permissions.index'));
$response->assertStatus(401);
}