Fixed order email, added site url tests, add doctrine/dbal, add service::site()

This commit is contained in:
Deon George
2020-02-09 23:12:34 +11:00
parent a92e94398c
commit cd18b98859
10 changed files with 316 additions and 28 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class SiteURLTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testHomeURL()
{
$response = $this->get('/');
$response->assertStatus(200);
}
public function testLoginURL()
{
$response = $this->get('/login');
$response->assertStatus(200);
}
}