Rename sample test, remove unit test

This commit is contained in:
2022-09-05 12:19:04 +02:00
parent 71781bb664
commit 414a569c7f
4 changed files with 15 additions and 42 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class HomepageReachabilityTest extends TestCase
{
public function test_homepage_is_reachable()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}