first commit

This commit is contained in:
benjibennn
2023-12-22 12:35:55 +08:00
commit 9f89a732d6
872 changed files with 156291 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
test('available routes', function ($url) {
$response = $this->get($url);
$response->assertStatus(200);
})->with('routes');
test('available auth routes', function ($url) {
$user = \App\Models\User::find(1);
$this->actingAs($user);
$response = $this->get($url);
$response->assertStatus(200);
})->with('authroutes');