osb/tests/Feature/ExampleTest.php
Deon George d6cb505e1c
Added unzip for gitlab CI
Changed test to use /login
2018-04-10 22:07:59 +10:00

22 lines
345 B
PHP

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