mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-30 18:19:10 +01:00
22 lines
300 B
PHP
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');
|
|
}
|
|
|
|
} |