2FAuth/tests/Unit/RouteTest.php
2020-03-02 17:11:17 +01:00

22 lines
300 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
class RouteTest extends TestCase
{
/**
* test return main web view
*
* @test
*/
public function testLandingViewIsReturned()
{
$response = $this->get('/');
$response->assertViewIs('landing');
}
}