15 lines
318 B
PHP
15 lines
318 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Admin;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class AdminHomeControllerTest extends TestCase
|
|
{
|
|
public function test_admin_homepage()
|
|
{
|
|
$response = $this->withSession(['loggedin' => true])
|
|
->get('/admin');
|
|
$response->assertViewIs('admin.welcome');
|
|
}
|
|
}
|