chore: remove Laravel starter boilerplate files

This commit is contained in:
2026-08-01 22:36:23 +02:00
parent 6a3709504e
commit 1511de31a8
3 changed files with 0 additions and 447 deletions
-18
View File
@@ -1,18 +0,0 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_returns_a_successful_response()
{
$response = $this->get(route('home'));
$response->assertOk();
}
}
-16
View File
@@ -1,16 +0,0 @@
<?php
namespace Tests\Unit;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_that_true_is_true()
{
$this->assertTrue(true);
}
}