3.0: Dockerized laravel 8.0

This commit is contained in:
2021-01-07 10:24:30 -08:00
parent a0f7b51ba1
commit 9575f69b35
85 changed files with 10625 additions and 0 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);
}
}