Move some tests into their own subfodlers

This commit is contained in:
Jonny Barnes 2017-12-18 17:53:22 +00:00
parent 0dd6adfa0e
commit e1aa814d8c
18 changed files with 29 additions and 31 deletions

View file

@ -0,0 +1,15 @@
<?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');
}
}