Added site files

This commit is contained in:
Henry Whitaker
2020-04-12 18:49:36 +01:00
parent 7b87339d46
commit 5e1e673cee
498 changed files with 11 additions and 139300 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}